[FFmpeg-cvslog] r18537 - trunk/libavformat/westwood.c
reimar
subversion
Thu Apr 16 14:39:15 CEST 2009
Author: reimar
Date: Thu Apr 16 14:39:14 2009
New Revision: 18537
Log:
Remove unused code from Westwood VQA/AUD demuxer.
Modified:
trunk/libavformat/westwood.c
Modified: trunk/libavformat/westwood.c
==============================================================================
--- trunk/libavformat/westwood.c Thu Apr 16 12:34:14 2009 (r18536)
+++ trunk/libavformat/westwood.c Thu Apr 16 14:39:14 2009 (r18537)
@@ -60,7 +60,6 @@
#define VQA_HEADER_SIZE 0x2A
#define VQA_FRAMERATE 15
-#define VQA_VIDEO_PTS_INC (90000 / VQA_FRAMERATE)
#define VQA_PREAMBLE_SIZE 8
typedef struct WsAudDemuxContext {
@@ -81,7 +80,6 @@ typedef struct WsVqaDemuxContext {
int video_stream_index;
int64_t audio_frame_counter;
- int64_t video_pts;
} WsVqaDemuxContext;
static int wsaud_probe(AVProbeData *p)
@@ -308,8 +306,6 @@ static int wsvqa_read_header(AVFormatCon
url_fseek(pb, chunk_size, SEEK_CUR);
} while (chunk_tag != FINF_TAG);
- wsvqa->video_pts = wsvqa->audio_frame_counter = 0;
-
return 0;
}
@@ -349,7 +345,6 @@ static int wsvqa_read_packet(AVFormatCon
wsvqa->audio_frame_counter += AV_RL16(pkt->data) / wsvqa->audio_channels;
} else {
pkt->stream_index = wsvqa->video_stream_index;
- wsvqa->video_pts += VQA_VIDEO_PTS_INC;
}
/* stay on 16-bit alignment */
if (skip_byte)
More information about the ffmpeg-cvslog
mailing list