Browse Source

vqa: remove unused context fields, audio_samplerate and audio_bits

tags/n0.10
Justin Ruggles 14 years ago
parent
commit
4340a6363e
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      libavformat/westwood_vqa.c

+ 0
- 4
libavformat/westwood_vqa.c View File

@@ -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;
}



Loading…
Cancel
Save