From ac85f631c9a9cc59aaca1c8dd6894fb1f701c594 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 23 Jun 2014 21:38:37 +0200 Subject: output example: set output channel layout --- doc/examples/output.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc') diff --git a/doc/examples/output.c b/doc/examples/output.c index 620be150a7..3d1444912f 100644 --- a/doc/examples/output.c +++ b/doc/examples/output.c @@ -34,6 +34,7 @@ #include #include +#include "libavutil/channel_layout.h" #include "libavutil/mathematics.h" #include "libavformat/avformat.h" #include "libswscale/swscale.h" @@ -90,6 +91,7 @@ static AVStream *add_audio_stream(AVFormatContext *oc, enum AVCodecID codec_id) c->bit_rate = 64000; c->sample_rate = 44100; c->channels = 2; + c->channel_layout = AV_CH_LAYOUT_STEREO; // some formats want stream headers to be separate if (oc->oformat->flags & AVFMT_GLOBALHEADER) -- cgit v1.2.3