mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avformat/msf: support codec 1, which is 16 bit pcm le
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
c61b28e042
commit
c279c44a3a
@ -64,6 +64,7 @@ static int msf_read_header(AVFormatContext *s)
|
||||
// avio_rb32(s->pb); /* byte flags with encoder info */
|
||||
switch (codec) {
|
||||
case 0: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE; break;
|
||||
case 1: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE; break;
|
||||
case 3: st->codecpar->block_align = 16 * st->codecpar->channels;
|
||||
st->codecpar->codec_id = AV_CODEC_ID_ADPCM_PSX; break;
|
||||
case 4:
|
||||
|
Loading…
Reference in New Issue
Block a user