OSDN Git Service

Remove unused code from Westwood VQA/AUD demuxer.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Thu, 16 Apr 2009 12:39:14 +0000 (12:39 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Thu, 16 Apr 2009 12:39:14 +0000 (12:39 +0000)
Originally committed as revision 18537 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/westwood.c

index d2736ac..7b016fd 100644 (file)
@@ -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(AVFormatContext *s,
         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(AVFormatContext *s,
                 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)