mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
tmv: set channel layout
This commit is contained in:
parent
7f348bd764
commit
a94b0267f2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user