[FFmpeg-cvslog] r15231 - trunk/libavformat/matroskadec.c
aurel
subversion
Sun Sep 7 01:44:29 CEST 2008
Author: aurel
Date: Sun Sep 7 01:44:29 2008
New Revision: 15231
Log:
matroskadec: remove now useless vstream and is_video_key_frame
Modified:
trunk/libavformat/matroskadec.c
Modified: trunk/libavformat/matroskadec.c
==============================================================================
--- trunk/libavformat/matroskadec.c (original)
+++ trunk/libavformat/matroskadec.c Sun Sep 7 01:44:29 2008
@@ -205,7 +205,6 @@ typedef struct {
AVPacket **packets;
int num_packets;
- AVStream *vstream;
int done;
int has_cluster_id;
@@ -1303,7 +1302,6 @@ static int matroska_read_header(AVFormat
}
if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
- if (!matroska->vstream) matroska->vstream = st;
st->codec->codec_type = CODEC_TYPE_VIDEO;
st->codec->codec_tag = track->video.fourcc;
st->codec->width = track->video.pixel_width;
@@ -1424,7 +1422,7 @@ static int matroska_parse_block(Matroska
int64_t cluster_pos)
{
MatroskaTrack *track;
- int is_video_key_frame = is_keyframe, res = 0;
+ int res = 0;
AVStream *st;
AVPacket *pkt;
int16_t block_time;
@@ -1464,8 +1462,6 @@ static int matroska_parse_block(Matroska
matroska->skip_to_keyframe = 0;
}
- is_video_key_frame &= st == matroska->vstream;
-
switch ((flags & 0x06) >> 1) {
case 0x0: /* no lacing */
laces = 1;
@@ -1638,7 +1634,7 @@ static int matroska_parse_block(Matroska
}
av_free(lace_size);
- return res < 0 ? res : is_video_key_frame;
+ return res;
}
static int matroska_parse_cluster(MatroskaDemuxContext *matroska)
More information about the ffmpeg-cvslog
mailing list