summaryrefslogtreecommitdiff
path: root/libavformat/tmv.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-04-07 18:45:49 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-11-12 10:33:22 -0500
commita94b0267f2e12861b6f78388cdeba29f1240be48 (patch)
treecb57572992b5a9962352112d03e107326c6c0905 /libavformat/tmv.c
parent7f348bd764e1ff85054f1da5291f18c0e7f8f39b (diff)
tmv: set channel layout
Diffstat (limited to 'libavformat/tmv.c')
-rw-r--r--libavformat/tmv.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/libavformat/tmv.c b/libavformat/tmv.c
index 100e12fa53..103ac4af20 100644
--- a/libavformat/tmv.c
+++ b/libavformat/tmv.c
@@ -26,6 +26,7 @@
* @see http://www.oldskool.org/pc/8088_Corruption
*/
+#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
@@ -112,7 +113,13 @@ static int tmv_read_header(AVFormatContext *s)
ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
ast->codec->codec_id = AV_CODEC_ID_PCM_U8;
- ast->codec->channels = features & TMV_STEREO ? 2 : 1;
+ if (features & TMV_STEREO) {
+ ast->codec->channels = 2;
+ ast->codec->channel_layout = AV_CH_LAYOUT_STEREO;
+ } else {
+ ast->codec->channels = 1;
+ ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
+ }
ast->codec->bits_per_coded_sample = 8;
ast->codec->bit_rate = ast->codec->sample_rate *
ast->codec->bits_per_coded_sample;