[SCM] libav/experimental: output example: set output channel layout

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:03:37 UTC 2014


The following commit has been merged in the experimental branch:
commit ac85f631c9a9cc59aaca1c8dd6894fb1f701c594
Author: Anton Khirnov <anton at khirnov.net>
Date:   Mon Jun 23 21:38:37 2014 +0200

    output example: set output channel layout

diff --git a/doc/examples/output.c b/doc/examples/output.c
index 620be15..3d14449 100644
--- a/doc/examples/output.c
+++ b/doc/examples/output.c
@@ -34,6 +34,7 @@
 #include <string.h>
 #include <math.h>
 
+#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)

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list