mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/nut: add ff_nut_audio_extra_tags to demuxer too
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f703dae7aa
commit
968516cebf
@ -176,7 +176,7 @@ const AVCodecTag ff_nut_video_tags[] = {
|
||||
{ AV_CODEC_ID_NONE, 0 }
|
||||
};
|
||||
|
||||
static const AVCodecTag nut_audio_extra_tags[] = {
|
||||
const AVCodecTag ff_nut_audio_extra_tags[] = {
|
||||
{ AV_CODEC_ID_PCM_ALAW, MKTAG('A', 'L', 'A', 'W') },
|
||||
{ AV_CODEC_ID_PCM_MULAW, MKTAG('U', 'L', 'A', 'W') },
|
||||
{ AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
|
||||
@ -212,7 +212,7 @@ const AVCodecTag ff_nut_audio_tags[] = {
|
||||
|
||||
const AVCodecTag * const ff_nut_codec_tags[] = {
|
||||
ff_nut_video_tags, ff_nut_audio_tags, ff_nut_subtitle_tags,
|
||||
ff_codec_bmp_tags, ff_codec_wav_tags, nut_audio_extra_tags, ff_nut_data_tags, 0
|
||||
ff_codec_bmp_tags, ff_codec_wav_tags, ff_nut_audio_extra_tags, ff_nut_data_tags, 0
|
||||
};
|
||||
|
||||
void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val)
|
||||
|
@ -112,6 +112,7 @@ typedef struct NUTContext {
|
||||
extern const AVCodecTag ff_nut_subtitle_tags[];
|
||||
extern const AVCodecTag ff_nut_video_tags[];
|
||||
extern const AVCodecTag ff_nut_audio_tags[];
|
||||
extern const AVCodecTag ff_nut_audio_extra_tags[];
|
||||
extern const AVCodecTag ff_nut_data_tags[];
|
||||
|
||||
extern const AVCodecTag * const ff_nut_codec_tags[];
|
||||
|
@ -390,6 +390,7 @@ static int decode_stream_header(NUTContext *nut)
|
||||
st->codec->codec_id = av_codec_get_id((const AVCodecTag * const []) {
|
||||
ff_nut_audio_tags,
|
||||
ff_codec_wav_tags,
|
||||
ff_nut_audio_extra_tags,
|
||||
0
|
||||
},
|
||||
tmp);
|
||||
|
Loading…
Reference in New Issue
Block a user