You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
vqa: remove unused context fields, audio_samplerate and audio_bits
This commit is contained in:
@@ -54,10 +54,7 @@
|
|||||||
#define VQA_PREAMBLE_SIZE 8
|
#define VQA_PREAMBLE_SIZE 8
|
||||||
|
|
||||||
typedef struct WsVqaDemuxContext {
|
typedef struct WsVqaDemuxContext {
|
||||||
int audio_samplerate;
|
|
||||||
int audio_channels;
|
int audio_channels;
|
||||||
int audio_bits;
|
|
||||||
|
|
||||||
int audio_stream_index;
|
int audio_stream_index;
|
||||||
int video_stream_index;
|
int video_stream_index;
|
||||||
} WsVqaDemuxContext;
|
} WsVqaDemuxContext;
|
||||||
@@ -158,7 +155,6 @@ static int wsvqa_read_header(AVFormatContext *s,
|
|||||||
}
|
}
|
||||||
|
|
||||||
wsvqa->audio_stream_index = st->index;
|
wsvqa->audio_stream_index = st->index;
|
||||||
wsvqa->audio_samplerate = st->codec->sample_rate;
|
|
||||||
wsvqa->audio_channels = st->codec->channels;
|
wsvqa->audio_channels = st->codec->channels;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user