Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/smacker.c')
-rw-r--r--libavformat/smacker.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/libavformat/smacker.c b/libavformat/smacker.c
index 98436bd708..80d36f2f40 100644
--- a/libavformat/smacker.c
+++ b/libavformat/smacker.c
@@ -186,13 +186,8 @@ static int smacker_read_header(AVFormatContext *s)
} else {
par->codec_id = AV_CODEC_ID_PCM_U8;
}
- if (aflag & SMK_AUD_STEREO) {
- par->channels = 2;
- par->channel_layout = AV_CH_LAYOUT_STEREO;
- } else {
- par->channels = 1;
- par->channel_layout = AV_CH_LAYOUT_MONO;
- }
+ av_channel_layout_default(&par->ch_layout,
+ !!(aflag & SMK_AUD_STEREO) + 1);
par->sample_rate = rate;
par->bits_per_coded_sample = (aflag & SMK_AUD_16BITS) ? 16 : 8;
if (par->bits_per_coded_sample == 16 &&
@@ -200,7 +195,7 @@ static int smacker_read_header(AVFormatContext *s)
par->codec_id = AV_CODEC_ID_PCM_S16LE;
else
smk->duration_size[i] = 4;
- avpriv_set_pts_info(ast, 64, 1, par->sample_rate * par->channels
+ avpriv_set_pts_info(ast, 64, 1, par->sample_rate * par->ch_layout.nb_channels
* par->bits_per_coded_sample / 8);
}
}