diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-03-01 11:29:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-01 11:29:55 +0000 |
commit | 30a43f2d09d4ddb7f6335dfd32796896e64b2655 (patch) | |
tree | ab32569d2b2a35be737151c12e375aaedd573e14 /libavformat/mpeg.c | |
parent | 26d6d032702c55616127511fa317b96763eb5cb3 (diff) | |
download | ffmpeg-30a43f2d09d4ddb7f6335dfd32796896e64b2655.tar.gz |
add size to AVIndex
Originally committed as revision 5083 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r-- | libavformat/mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 2474a37741..b3eafe459d 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -1541,7 +1541,7 @@ static int mpegps_read_pes_header(AVFormatContext *s, int i; for(i=0; i<s->nb_streams; i++){ if(startcode == s->streams[i]->id) { - av_add_index_entry(s->streams[i], *ppos, dts, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */); + av_add_index_entry(s->streams[i], *ppos, dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */); } } } |