mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Remove unused code from Westwood VQA/AUD demuxer.
Originally committed as revision 18537 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8bb3d6a612
commit
3f19810d9e
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user