[FFmpeg-cvslog] rtpdec_amr: set channel layout

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


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

rtpdec_amr: set channel layout

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

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

diff --git a/libavformat/rtpdec_amr.c b/libavformat/rtpdec_amr.c
index cc43e31..1e60287 100644
--- a/libavformat/rtpdec_amr.c
+++ b/libavformat/rtpdec_amr.c
@@ -19,6 +19,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "libavutil/channel_layout.h"
 #include "avformat.h"
 #include "rtpdec_formats.h"
 #include "libavutil/avstring.h"
@@ -77,6 +78,7 @@ static int amr_handle_packet(AVFormatContext *ctx,
         av_log(ctx, AV_LOG_ERROR, "Only mono AMR is supported\n");
         return AVERROR_INVALIDDATA;
     }
+    st->codec->channel_layout = AV_CH_LAYOUT_MONO;
 
     /* The AMR RTP packet consists of one header byte, followed
      * by one TOC byte for each AMR frame in the packet, followed



More information about the ffmpeg-cvslog mailing list