diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2011-11-07 14:29:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-07 15:01:19 +0100 |
commit | bc74c4712d39c7610e7a9bb362e762a8a613ad0b (patch) | |
tree | 0c7b2c969cc925dff8b51185dfc8ef725fa3bbab | |
parent | e3475198779f806115079c9128172543b37243e6 (diff) | |
download | ffmpeg-bc74c4712d39c7610e7a9bb362e762a8a613ad0b.tar.gz |
libutvideodec: remove impossible pix_fmt case
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libutvideo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/libutvideo.cpp b/libavcodec/libutvideo.cpp index f10b6f103e..3c78f45daf 100644 --- a/libavcodec/libutvideo.cpp +++ b/libavcodec/libutvideo.cpp @@ -151,7 +151,6 @@ static int utvideo_decode_frame(AVCodecContext *avctx, void *data, pic->data[1] = pic->data[2] + (w * h / 4); break; case PIX_FMT_YUYV422: - case PIX_FMT_UYVY422: pic->linesize[0] = w * 2; pic->data[0] = utv->output; break; |