diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-26 17:26:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-26 17:26:20 +0000 |
commit | 2ec23b6d44313a2f8a69120e46369b801a5cce38 (patch) | |
tree | 90fb255f3738ed971641174b5ec20a0c7514fe9a /libavformat | |
parent | 5082f759e0d02b26e1b4dba8341d516079cfb115 (diff) | |
download | ffmpeg-2ec23b6d44313a2f8a69120e46369b801a5cce38.tar.gz |
move repeat_pict field from AVCodecContext -> AVFrame (closes bug #683536)
Originally committed as revision 1608 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index d6e888b9f3..93048490fb 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -605,7 +605,7 @@ int av_find_stream_info(AVFormatContext *ic) TS case we do not do it because it would be too long */ st->codec_info_nb_real_frames++; - st->codec_info_nb_repeat_frames += st->codec.repeat_pict; + st->codec_info_nb_repeat_frames += st->codec.coded_frame->repeat_pict; #if 0 /* XXX: testing */ if ((st->codec_info_nb_real_frames % 24) == 23) { |