]> git.sesse.net Git - ffmpeg/commit
mpegvideo: fix compilation after 900321b08c95bd42e6db53864bfffbe48d6019da
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 16 Jul 2011 16:49:39 +0000 (18:49 +0200)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 16 Jul 2011 16:56:47 +0000 (18:56 +0200)
commit7bda0c9a82eb3c9a58e0c9f170ac47fe7289f6f7
tree9899bdbaa5b112acd7459bdb6b20394f359209de
parent900321b08c95bd42e6db53864bfffbe48d6019da
mpegvideo: fix compilation after 900321b08c95bd42e6db53864bfffbe48d6019da

Replace:
s->last_picture_ptr->f.key_frame = 0;
with:
s->last_picture_ptr->key_frame = 0;

This is required since mpegvideo.h:Picture now contains an embedded
AVFrame f, rather than a literal copy of the AVFrame fields.
libavcodec/mpegvideo.c