[FFmpeg-cvslog] westwood_aud: set channel layout

Justin Ruggles git at videolan.org
Tue Nov 13 11:18:05 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Sat Apr  7 18:50:41 2012 -0400| [7b48d93e8abb8736f52548d02ca5d6137d441ba4] | committer: Justin Ruggles

westwood_aud: set channel layout

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b48d93e8abb8736f52548d02ca5d6137d441ba4
---

 libavformat/westwood_aud.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/westwood_aud.c b/libavformat/westwood_aud.c
index 806aea6..2a06c29 100644
--- a/libavformat/westwood_aud.c
+++ b/libavformat/westwood_aud.c
@@ -33,6 +33,7 @@
  * qualify a file. Refer to wsaud_probe() for the precise parameters.
  */
 
+#include "libavutil/channel_layout.h"
 #include "libavutil/intreadwrite.h"
 #include "avformat.h"
 #include "internal.h"
@@ -120,6 +121,8 @@ static int wsaud_read_header(AVFormatContext *s)
     avpriv_set_pts_info(st, 64, 1, sample_rate);
     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
     st->codec->channels    = channels;
+    st->codec->channel_layout = channels == 1 ? AV_CH_LAYOUT_MONO :
+                                                AV_CH_LAYOUT_STEREO;
     st->codec->sample_rate = sample_rate;
 
     return 0;



More information about the ffmpeg-cvslog mailing list