summaryrefslogtreecommitdiff
path: root/libavformat/westwood_vqa.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-01-23 13:43:54 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2012-01-24 14:08:29 -0500
commit4340a6363e9ff75dc4e8ce14dc96671623494ed8 (patch)
treed83b0fdd430efe5c6f1f0e225c63ef1dd271d1af /libavformat/westwood_vqa.c
parent7e813d59335753ab07be82919f36ddcaf075463a (diff)
vqa: remove unused context fields, audio_samplerate and audio_bits
Diffstat (limited to 'libavformat/westwood_vqa.c')
-rw-r--r--libavformat/westwood_vqa.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/westwood_vqa.c b/libavformat/westwood_vqa.c
index c338d95182..4d6397b88c 100644
--- a/libavformat/westwood_vqa.c
+++ b/libavformat/westwood_vqa.c
@@ -54,10 +54,7 @@
#define VQA_PREAMBLE_SIZE 8
typedef struct WsVqaDemuxContext {
- int audio_samplerate;
int audio_channels;
- int audio_bits;
-
int audio_stream_index;
int video_stream_index;
} WsVqaDemuxContext;
@@ -158,7 +155,6 @@ static int wsvqa_read_header(AVFormatContext *s,
}
wsvqa->audio_stream_index = st->index;
- wsvqa->audio_samplerate = st->codec->sample_rate;
wsvqa->audio_channels = st->codec->channels;
}