diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-05 00:39:55 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-05 00:39:55 +0000 |
commit | 6e35ae2a7415361a56ce5c3f892e771af7fbe62c (patch) | |
tree | b4414d7f4165a66d8bb1f7bf4a5e92d8c0960b6e /libavformat/matroskadec.c | |
parent | 4eff97439b1cafea2b313d948566255cbd97d9fb (diff) | |
download | ffmpeg-6e35ae2a7415361a56ce5c3f892e771af7fbe62c.tar.gz |
matroskadec: remove unused is_bframe flag
Originally committed as revision 14551 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index b4814ca2a2..f2d4e3c3c8 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -2709,7 +2709,7 @@ matroska_read_header (AVFormatContext *s, static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size, int64_t pos, uint64_t cluster_time, uint64_t duration, - int is_keyframe, int is_bframe) + int is_keyframe) { int res = 0; int track; @@ -2941,7 +2941,6 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, { int res = 0; uint32_t id; - int is_bframe = 0; int is_keyframe = PKT_FLAG_KEY, last_num_packets = matroska->num_packets; uint64_t duration = AV_NOPTS_VALUE; uint8_t *data; @@ -2984,8 +2983,6 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, matroska->packets[last_num_packets]->flags = 0; if ((res = ebml_read_sint(matroska, &id, &num)) < 0) break; - if (num > 0) - is_bframe = 1; break; } @@ -3010,7 +3007,7 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, if (size > 0) res = matroska_parse_block(matroska, data, size, pos, cluster_time, - duration, is_keyframe, is_bframe); + duration, is_keyframe); return res; } @@ -3060,7 +3057,7 @@ matroska_parse_cluster (MatroskaDemuxContext *matroska) if (res == 0) res = matroska_parse_block(matroska, data, size, pos, cluster_time, AV_NOPTS_VALUE, - -1, 0); + -1); break; default: |