Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e27ce0ee
Commit
e27ce0ee
authored
Mar 26, 2011
by
Peter Ross
Committed by
Reinhard Tartler
May 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DPX image encoder
parent
40662915
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
185 additions
and
4 deletions
+185
-4
Changelog
Changelog
+2
-0
general.texi
doc/general.texi
+1
-1
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-1
dpxenc.c
libavcodec/dpxenc.c
+178
-0
version.h
libavcodec/version.h
+2
-2
No files found.
Changelog
View file @
e27ce0ee
...
...
@@ -6,6 +6,8 @@ version <next>:
- Lots of deprecated API cruft removed
- fft and imdct optimizations for AVX (Sandy Bridge) processors
- DPX image encoder
version 0.7_beta1:
...
...
doc/general.texi
View file @
e27ce0ee
...
...
@@ -279,7 +279,7 @@ following image formats are supported:
@tab Only uncompressed GIFs are generated.
@item BMP @tab X @tab X
@tab Microsoft BMP image
@item DPX @tab
@tab X
@item DPX @tab
X
@tab X
@tab Digital Picture Exchange
@item JPEG @tab X @tab X
@tab Progressive JPEG is not supported.
...
...
libavcodec/Makefile
View file @
e27ce0ee
...
...
@@ -110,6 +110,7 @@ OBJS-$(CONFIG_DNXHD_ENCODER) += dnxhdenc.o dnxhddata.o \
ratecontrol.o
mpeg12data.o
\
mpegvideo.o
OBJS-$(CONFIG_DPX_DECODER)
+=
dpx.o
OBJS-$(CONFIG_DPX_ENCODER)
+=
dpxenc.o
OBJS-$(CONFIG_DSICINAUDIO_DECODER)
+=
dsicinav.o
OBJS-$(CONFIG_DSICINVIDEO_DECODER)
+=
dsicinav.o
OBJS-$(CONFIG_DVBSUB_DECODER)
+=
dvbsubdec.o
...
...
libavcodec/allcodecs.c
View file @
e27ce0ee
...
...
@@ -90,7 +90,7 @@ void avcodec_register_all(void)
REGISTER_DECODER
(
CYUV
,
cyuv
);
REGISTER_DECODER
(
DFA
,
dfa
);
REGISTER_ENCDEC
(
DNXHD
,
dnxhd
);
REGISTER_
DECODER
(
DPX
,
dpx
);
REGISTER_
ENCDEC
(
DPX
,
dpx
);
REGISTER_DECODER
(
DSICINVIDEO
,
dsicinvideo
);
REGISTER_ENCDEC
(
DVVIDEO
,
dvvideo
);
REGISTER_DECODER
(
DXA
,
dxa
);
...
...
libavcodec/dpxenc.c
0 → 100644
View file @
e27ce0ee
/*
* DPX (.dpx) image encoder
* Copyright (c) 2011 Peter Ross <pross@xvid.org>
*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Libav is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
typedef
struct
DPXContext
{
AVFrame
picture
;
int
big_endian
;
int
bits_per_component
;
int
descriptor
;
}
DPXContext
;
static
av_cold
int
encode_init
(
AVCodecContext
*
avctx
)
{
DPXContext
*
s
=
avctx
->
priv_data
;
avctx
->
coded_frame
=
&
s
->
picture
;
avctx
->
coded_frame
->
pict_type
=
FF_I_TYPE
;
avctx
->
coded_frame
->
key_frame
=
1
;
s
->
big_endian
=
1
;
s
->
bits_per_component
=
8
;
s
->
descriptor
=
50
;
/* RGB */
switch
(
avctx
->
pix_fmt
)
{
case
PIX_FMT_RGB24
:
break
;
case
PIX_FMT_RGBA
:
s
->
descriptor
=
51
;
/* RGBA */
break
;
case
PIX_FMT_RGB48LE
:
s
->
big_endian
=
0
;
case
PIX_FMT_RGB48BE
:
s
->
bits_per_component
=
avctx
->
bits_per_raw_sample
?
avctx
->
bits_per_raw_sample
:
16
;
break
;
default:
av_log
(
avctx
,
AV_LOG_INFO
,
"unsupported pixel format
\n
"
);
return
-
1
;
}
return
0
;
}
#define write16(p, value) \
do { \
if (s->big_endian) AV_WB16(p, value); \
else AV_WL16(p, value); \
} while(0)
#define write32(p, value) \
do { \
if (s->big_endian) AV_WB32(p, value); \
else AV_WL32(p, value); \
} while(0)
static
void
encode_rgb48_10bit
(
AVCodecContext
*
avctx
,
const
AVPicture
*
pic
,
uint8_t
*
dst
)
{
DPXContext
*
s
=
avctx
->
priv_data
;
const
uint8_t
*
src
=
pic
->
data
[
0
];
int
x
,
y
;
for
(
y
=
0
;
y
<
avctx
->
height
;
y
++
)
{
for
(
x
=
0
;
x
<
avctx
->
width
;
x
++
)
{
int
value
;
if
((
avctx
->
pix_fmt
&
1
))
{
value
=
((
AV_RB16
(
src
+
6
*
x
+
4
)
&
0xFFC0
)
>>
4
)
|
((
AV_RB16
(
src
+
6
*
x
+
2
)
&
0xFFC0
)
<<
6
)
|
((
AV_RB16
(
src
+
6
*
x
+
0
)
&
0xFFC0
)
<<
16
);
}
else
{
value
=
((
AV_RL16
(
src
+
6
*
x
+
4
)
&
0xFFC0
)
>>
4
)
|
((
AV_RL16
(
src
+
6
*
x
+
2
)
&
0xFFC0
)
<<
6
)
|
((
AV_RL16
(
src
+
6
*
x
+
0
)
&
0xFFC0
)
<<
16
);
}
write32
(
dst
,
value
);
dst
+=
4
;
}
src
+=
pic
->
linesize
[
0
];
}
}
static
int
encode_frame
(
AVCodecContext
*
avctx
,
unsigned
char
*
buf
,
int
buf_size
,
void
*
data
)
{
DPXContext
*
s
=
avctx
->
priv_data
;
int
size
;
#define HEADER_SIZE 1664
/* DPX Generic header */
if
(
buf_size
<
HEADER_SIZE
)
return
-
1
;
memset
(
buf
,
0
,
HEADER_SIZE
);
/* File information header */
write32
(
buf
,
MKBETAG
(
'S'
,
'D'
,
'P'
,
'X'
));
write32
(
buf
+
4
,
HEADER_SIZE
);
memcpy
(
buf
+
8
,
"V1.0"
,
4
);
write32
(
buf
+
20
,
1
);
/* new image */
write32
(
buf
+
24
,
HEADER_SIZE
);
memcpy
(
buf
+
160
,
LIBAVCODEC_IDENT
,
FFMIN
(
sizeof
(
LIBAVCODEC_IDENT
),
100
));
write32
(
buf
+
660
,
0xFFFFFFFF
);
/* unencrypted */
/* Image information header */
write16
(
buf
+
768
,
0
);
/* orientation; left to right, top to bottom */
write16
(
buf
+
770
,
1
);
/* number of elements */
write32
(
buf
+
772
,
avctx
->
width
);
write32
(
buf
+
776
,
avctx
->
height
);
buf
[
800
]
=
s
->
descriptor
;
buf
[
801
]
=
2
;
/* linear transfer */
buf
[
802
]
=
2
;
/* linear colorimetric */
buf
[
803
]
=
s
->
bits_per_component
;
write16
(
buf
+
804
,
s
->
bits_per_component
==
10
?
1
:
0
);
/* packing method */
/* Image source information header */
write32
(
buf
+
1628
,
avctx
->
sample_aspect_ratio
.
num
);
write32
(
buf
+
1632
,
avctx
->
sample_aspect_ratio
.
den
);
switch
(
s
->
bits_per_component
)
{
case
8
:
case
16
:
size
=
avpicture_layout
(
data
,
avctx
->
pix_fmt
,
avctx
->
width
,
avctx
->
height
,
buf
+
HEADER_SIZE
,
buf_size
-
HEADER_SIZE
);
if
(
size
<
0
)
return
size
;
break
;
case
10
:
size
=
avctx
->
height
*
avctx
->
width
*
4
;
if
(
buf_size
<
HEADER_SIZE
+
size
)
return
-
1
;
encode_rgb48_10bit
(
avctx
,
data
,
buf
+
HEADER_SIZE
);
break
;
default:
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unsupported bit depth: %d
\n
"
,
s
->
bits_per_component
);
return
-
1
;
}
size
+=
HEADER_SIZE
;
write32
(
buf
+
16
,
size
);
/* file size */
return
size
;
}
AVCodec
ff_dpx_encoder
=
{
.
name
=
"dpx"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
CODEC_ID_DPX
,
.
priv_data_size
=
sizeof
(
DPXContext
),
.
init
=
encode_init
,
.
decode
=
encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_RGB24
,
PIX_FMT_RGBA
,
PIX_FMT_RGB48LE
,
PIX_FMT_RGB48BE
,
PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX image"
),
};
libavcodec/version.h
View file @
e27ce0ee
...
...
@@ -21,8 +21,8 @@
#define AVCODEC_VERSION_H
#define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR
1
#define LIBAVCODEC_VERSION_MICRO
1
#define LIBAVCODEC_VERSION_MINOR
2
#define LIBAVCODEC_VERSION_MICRO
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment