Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
e27bf2c7
Commit
e27bf2c7
authored
Jan 04, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix YUV444P LJPEG encoding.
Originally committed as revision 26215 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bd7d9e45
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 @
e27bf2c7
...
...
@@ -252,6 +252,12 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
}
break
;
case
CODEC_ID_LJPEG
:
if
(
avctx
->
pix_fmt
!=
PIX_FMT_YUVJ420P
&&
avctx
->
pix_fmt
!=
PIX_FMT_YUVJ422P
&&
avctx
->
pix_fmt
!=
PIX_FMT_YUVJ444P
&&
avctx
->
pix_fmt
!=
PIX_FMT_RGB32
&&
((
avctx
->
pix_fmt
!=
PIX_FMT_YUV420P
&&
avctx
->
pix_fmt
!=
PIX_FMT_YUV422P
&&
avctx
->
pix_fmt
!=
PIX_FMT_YUV444P
)
||
avctx
->
strict_std_compliance
>
FF_COMPLIANCE_UNOFFICIAL
)){
av_log
(
avctx
,
AV_LOG_ERROR
,
"colorspace not supported in LJPEG
\n
"
);
return
-
1
;
}
break
;
case
CODEC_ID_MJPEG
:
if
(
avctx
->
pix_fmt
!=
PIX_FMT_YUVJ420P
&&
avctx
->
pix_fmt
!=
PIX_FMT_YUVJ422P
&&
avctx
->
pix_fmt
!=
PIX_FMT_RGB32
&&
((
avctx
->
pix_fmt
!=
PIX_FMT_YUV420P
&&
avctx
->
pix_fmt
!=
PIX_FMT_YUV422P
)
||
avctx
->
strict_std_compliance
>
FF_COMPLIANCE_UNOFFICIAL
)){
...
...
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