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
991ae7b6
Commit
991ae7b6
authored
Aug 11, 2001
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added interlaced MJPEG support
Originally committed as revision 70 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
85c242d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
2 deletions
+36
-2
mjpeg.c
libavcodec/mjpeg.c
+36
-2
No files found.
libavcodec/mjpeg.c
View file @
991ae7b6
...
@@ -443,6 +443,12 @@ typedef struct MJpegDecodeContext {
...
@@ -443,6 +443,12 @@ typedef struct MJpegDecodeContext {
int
mpeg_enc_ctx_allocated
;
/* true if decoding context allocated */
int
mpeg_enc_ctx_allocated
;
/* true if decoding context allocated */
INT16
quant_matrixes
[
4
][
64
];
INT16
quant_matrixes
[
4
][
64
];
VLC
vlcs
[
2
][
4
];
VLC
vlcs
[
2
][
4
];
int
org_width
,
org_height
;
/* size given at codec init */
int
first_picture
;
/* true if decoding first picture */
int
interlaced
;
/* true if interlaced */
int
bottom_field
;
/* true if bottom field */
int
width
,
height
;
int
width
,
height
;
int
nb_components
;
int
nb_components
;
int
component_id
[
MAX_COMPONENTS
];
int
component_id
[
MAX_COMPONENTS
];
...
@@ -479,6 +485,9 @@ static int mjpeg_decode_init(AVCodecContext *avctx)
...
@@ -479,6 +485,9 @@ static int mjpeg_decode_init(AVCodecContext *avctx)
account FF 00 case */
account FF 00 case */
s
->
start_code
=
-
1
;
s
->
start_code
=
-
1
;
s
->
buf_ptr
=
s
->
buffer
;
s
->
buf_ptr
=
s
->
buffer
;
s
->
first_picture
=
1
;
s
->
org_width
=
avctx
->
width
;
s
->
org_height
=
avctx
->
height
;
build_vlc
(
&
s
->
vlcs
[
0
][
0
],
bits_dc_luminance
,
val_dc_luminance
,
12
);
build_vlc
(
&
s
->
vlcs
[
0
][
0
],
bits_dc_luminance
,
val_dc_luminance
,
12
);
build_vlc
(
&
s
->
vlcs
[
0
][
1
],
bits_dc_chrominance
,
val_dc_chrominance
,
12
);
build_vlc
(
&
s
->
vlcs
[
0
][
1
],
bits_dc_chrominance
,
val_dc_chrominance
,
12
);
...
@@ -611,6 +620,14 @@ static int mjpeg_decode_sof0(MJpegDecodeContext *s,
...
@@ -611,6 +620,14 @@ static int mjpeg_decode_sof0(MJpegDecodeContext *s,
}
}
s
->
width
=
width
;
s
->
width
=
width
;
s
->
height
=
height
;
s
->
height
=
height
;
/* test interlaced mode */
if
(
s
->
first_picture
&&
s
->
org_height
!=
0
&&
s
->
height
<
((
s
->
org_height
*
3
)
/
4
))
{
s
->
interlaced
=
1
;
s
->
bottom_field
=
0
;
}
for
(
i
=
0
;
i
<
nb_components
;
i
++
)
{
for
(
i
=
0
;
i
<
nb_components
;
i
++
)
{
int
w
,
h
,
hh
,
vv
;
int
w
,
h
,
hh
,
vv
;
hh
=
s
->
h_max
/
s
->
h_count
[
i
];
hh
=
s
->
h_max
/
s
->
h_count
[
i
];
...
@@ -619,12 +636,15 @@ static int mjpeg_decode_sof0(MJpegDecodeContext *s,
...
@@ -619,12 +636,15 @@ static int mjpeg_decode_sof0(MJpegDecodeContext *s,
h
=
(
s
->
height
+
8
*
vv
-
1
)
/
(
8
*
vv
);
h
=
(
s
->
height
+
8
*
vv
-
1
)
/
(
8
*
vv
);
w
=
w
*
8
;
w
=
w
*
8
;
h
=
h
*
8
;
h
=
h
*
8
;
if
(
s
->
interlaced
)
w
*=
2
;
s
->
linesize
[
i
]
=
w
;
s
->
linesize
[
i
]
=
w
;
/* memory test is done in mjpeg_decode_sos() */
/* memory test is done in mjpeg_decode_sos() */
s
->
current_picture
[
i
]
=
av_mallocz
(
w
*
h
);
s
->
current_picture
[
i
]
=
av_mallocz
(
w
*
h
);
}
}
s
->
first_picture
=
0
;
}
}
return
0
;
return
0
;
}
}
...
@@ -788,6 +808,8 @@ static int mjpeg_decode_sos(MJpegDecodeContext *s,
...
@@ -788,6 +808,8 @@ static int mjpeg_decode_sos(MJpegDecodeContext *s,
ptr
=
s
->
current_picture
[
c
]
+
ptr
=
s
->
current_picture
[
c
]
+
(
s
->
linesize
[
c
]
*
(
v
*
mb_y
+
y
)
*
8
)
+
(
s
->
linesize
[
c
]
*
(
v
*
mb_y
+
y
)
*
8
)
+
(
h
*
mb_x
+
x
)
*
8
;
(
h
*
mb_x
+
x
)
*
8
;
if
(
s
->
interlaced
&&
s
->
bottom_field
)
ptr
+=
s
->
linesize
[
c
]
>>
1
;
put_pixels_clamped
(
s
->
block
,
ptr
,
s
->
linesize
[
c
]);
put_pixels_clamped
(
s
->
block
,
ptr
,
s
->
linesize
[
c
]);
if
(
++
x
==
h
)
{
if
(
++
x
==
h
)
{
x
=
0
;
x
=
0
;
...
@@ -895,12 +917,24 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
...
@@ -895,12 +917,24 @@ static int mjpeg_decode_frame(AVCodecContext *avctx,
case
SOS
:
case
SOS
:
mjpeg_decode_sos
(
s
,
s
->
buffer
,
input_size
);
mjpeg_decode_sos
(
s
,
s
->
buffer
,
input_size
);
if
(
s
->
start_code
==
EOI
)
{
if
(
s
->
start_code
==
EOI
)
{
int
l
;
if
(
s
->
interlaced
)
{
s
->
bottom_field
^=
1
;
/* if not bottom field, do not output image yet */
if
(
s
->
bottom_field
)
goto
the_end
;
}
for
(
i
=
0
;
i
<
3
;
i
++
)
{
for
(
i
=
0
;
i
<
3
;
i
++
)
{
picture
->
data
[
i
]
=
s
->
current_picture
[
i
];
picture
->
data
[
i
]
=
s
->
current_picture
[
i
];
picture
->
linesize
[
i
]
=
s
->
linesize
[
i
];
l
=
s
->
linesize
[
i
];
if
(
s
->
interlaced
)
l
>>=
1
;
picture
->
linesize
[
i
]
=
l
;
}
}
*
data_size
=
sizeof
(
AVPicture
);
*
data_size
=
sizeof
(
AVPicture
);
avctx
->
height
=
s
->
height
;
avctx
->
height
=
s
->
height
;
if
(
s
->
interlaced
)
avctx
->
height
*=
2
;
avctx
->
width
=
s
->
width
;
avctx
->
width
=
s
->
width
;
/* XXX: not complete test ! */
/* XXX: not complete test ! */
switch
((
s
->
h_count
[
0
]
<<
4
)
|
s
->
v_count
[
0
])
{
switch
((
s
->
h_count
[
0
]
<<
4
)
|
s
->
v_count
[
0
])
{
...
...
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