[FFmpeg-cvslog] yop: set channel layout

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


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

yop: set channel layout

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

 libavformat/yop.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/yop.c b/libavformat/yop.c
index 51d088b..351938b 100644
--- a/libavformat/yop.c
+++ b/libavformat/yop.c
@@ -22,6 +22,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "libavutil/channel_layout.h"
 #include "libavutil/intreadwrite.h"
 #include "avformat.h"
 #include "internal.h"
@@ -74,6 +75,7 @@ static int yop_read_header(AVFormatContext *s)
     audio_dec->codec_type   = AVMEDIA_TYPE_AUDIO;
     audio_dec->codec_id     = AV_CODEC_ID_ADPCM_IMA_APC;
     audio_dec->channels     = 1;
+    audio_dec->channels     = AV_CH_LAYOUT_MONO;
     audio_dec->sample_rate  = 22050;
 
     // Video



More information about the ffmpeg-cvslog mailing list