idcin: set channel_layout

This commit is contained in:
Justin Ruggles 2012-08-01 15:59:12 -04:00
parent 12c2530b1d
commit 4b840930da
1 changed files with 3 additions and 0 deletions

View File

@ -68,6 +68,7 @@
* transmitting them to the video decoder
*/
#include "libavutil/audioconvert.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
@ -204,6 +205,8 @@ static int idcin_read_header(AVFormatContext *s)
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_tag = 1;
st->codec->channels = channels;
st->codec->channel_layout = channels > 1 ? AV_CH_LAYOUT_STEREO :
AV_CH_LAYOUT_MONO;
st->codec->sample_rate = sample_rate;
st->codec->bits_per_coded_sample = bytes_per_sample * 8;
st->codec->bit_rate = sample_rate * bytes_per_sample * 8 * channels;