OSDN Git Service

Do not assume PIX_FMT_YUV420P will remain the only supported output format for H264.
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Tue, 5 Oct 2010 17:24:18 +0000 (17:24 +0000)
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Tue, 5 Oct 2010 17:24:18 +0000 (17:24 +0000)
Originally committed as revision 25352 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/h264.c

index 247dbb2..6c2cdf8 100644 (file)
@@ -1917,7 +1917,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
                 if (prev) {
                     av_image_copy(h->short_ref[0]->data, h->short_ref[0]->linesize,
                                   (const uint8_t**)prev->data, prev->linesize,
-                                  PIX_FMT_YUV420P, s->mb_width*16, s->mb_height*16);
+                                  s->avctx->pix_fmt, s->mb_width*16, s->mb_height*16);
                     h->short_ref[0]->poc = prev->poc+2;
                 }
                 h->short_ref[0]->frame_num = h->prev_frame_num;