Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
e0b176ad
Commit
e0b176ad
authored
Dec 10, 2009
by
Michael Niedermayer
Browse files
Fix RGB LJPEG encoding.
Originally committed as revision 20788 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
65214b62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
libavcodec/mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+6
-0
No files found.
libavcodec/mpegvideo_enc.c
View file @
e0b176ad
...
...
@@ -531,12 +531,18 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
case
CODEC_ID_MJPEG
:
s
->
out_format
=
FMT_MJPEG
;
s
->
intra_only
=
1
;
/* force intra only for jpeg */
if
(
avctx
->
codec
->
id
==
CODEC_ID_MJPEG
){
s
->
mjpeg_vsample
[
0
]
=
2
;
s
->
mjpeg_vsample
[
1
]
=
2
>>
chroma_v_shift
;
s
->
mjpeg_vsample
[
2
]
=
2
>>
chroma_v_shift
;
s
->
mjpeg_hsample
[
0
]
=
2
;
s
->
mjpeg_hsample
[
1
]
=
2
>>
chroma_h_shift
;
s
->
mjpeg_hsample
[
2
]
=
2
>>
chroma_h_shift
;
}
else
{
s
->
mjpeg_vsample
[
0
]
=
s
->
mjpeg_hsample
[
0
]
=
s
->
mjpeg_vsample
[
1
]
=
s
->
mjpeg_hsample
[
1
]
=
s
->
mjpeg_vsample
[
2
]
=
s
->
mjpeg_hsample
[
2
]
=
1
;
}
if
(
!
(
CONFIG_MJPEG_ENCODER
||
CONFIG_LJPEG_ENCODER
)
||
ff_mjpeg_encode_init
(
s
)
<
0
)
return
-
1
;
...
...
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