From: Justin Ruggles Date: Mon, 23 Jan 2012 18:43:54 +0000 (-0500) Subject: vqa: remove unused context fields, audio_samplerate and audio_bits X-Git-Tag: v9_beta1~3395 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4340a6363e9ff75dc4e8ce14dc96671623494ed8;p=platform%2Fupstream%2Flibav.git vqa: remove unused context fields, audio_samplerate and audio_bits --- diff --git a/libavformat/westwood_vqa.c b/libavformat/westwood_vqa.c index c338d95..4d6397b 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; }