mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
gdv: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
201d6c1355
commit
2f18760840
@ -99,7 +99,7 @@ static int gdv_read_header(AVFormatContext *ctx)
|
||||
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
ast->codecpar->codec_tag = 0;
|
||||
ast->codecpar->sample_rate = avio_rl16(pb);
|
||||
ast->codecpar->channels = 1 + !!(snd_flags & 2);
|
||||
ast->codecpar->ch_layout.nb_channels = 1 + !!(snd_flags & 2);
|
||||
if (snd_flags & 8) {
|
||||
ast->codecpar->codec_id = AV_CODEC_ID_GREMLIN_DPCM;
|
||||
} else {
|
||||
@ -108,7 +108,8 @@ static int gdv_read_header(AVFormatContext *ctx)
|
||||
|
||||
avpriv_set_pts_info(ast, 64, 1, ast->codecpar->sample_rate);
|
||||
gdv->audio_size = (ast->codecpar->sample_rate / fps) *
|
||||
ast->codecpar->channels * (1 + !!(snd_flags & 4)) / (1 + !!(snd_flags & 8));
|
||||
ast->codecpar->ch_layout.nb_channels *
|
||||
(1 + !!(snd_flags & 4)) / (1 + !!(snd_flags & 8));
|
||||
gdv->is_audio = 1;
|
||||
} else {
|
||||
avio_skip(pb, 2);
|
||||
|
Loading…
Reference in New Issue
Block a user