mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
bail out on unknown jpeg pixel format instead of silently decoding data incorrectly
patch by Andreas Öman % andreas A olebyn P nu % Original thread: date: Jul 19, 2007 4:50 PM subject: [FFmpeg-devel] [PATCH] bail out on unknown jpeg pixel format Originally committed as revision 9764 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
85565db0f8
commit
83c43e4d52
@ -305,10 +305,12 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
|
||||
case 0x221212:
|
||||
s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV422P : PIX_FMT_YUVJ422P;
|
||||
break;
|
||||
default:
|
||||
case 0x221111:
|
||||
s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420P;
|
||||
break;
|
||||
default:
|
||||
av_log(s->avctx, AV_LOG_ERROR, "Unhandled pixel format 0x%x\n", pix_fmt_id);
|
||||
return -1;
|
||||
}
|
||||
if(s->ls){
|
||||
if(s->nb_components > 1)
|
||||
|
Loading…
Reference in New Issue
Block a user