mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
Originally committed as revision 14836 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
57406d8eb8
commit
a1ef2c4bb3
@ -163,6 +163,8 @@ const AVCodecTag codec_movaudio_tags[] = {
|
||||
{ CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */
|
||||
{ CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') }, /* */
|
||||
{ CODEC_ID_PCM_S16LE, MKTAG('l', 'p', 'c', 'm') },
|
||||
{ CODEC_ID_PCM_F32BE, MKTAG('f', 'l', '3', '2') },
|
||||
{ CODEC_ID_PCM_F64BE, MKTAG('f', 'l', '6', '4') },
|
||||
{ CODEC_ID_PCM_S8, MKTAG('s', 'o', 'w', 't') },
|
||||
{ CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */
|
||||
{ CODEC_ID_PCM_U8, MKTAG('N', 'O', 'N', 'E') }, /* uncompressed */
|
||||
|
@ -565,6 +565,12 @@ static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
|
||||
case CODEC_ID_PCM_S32BE:
|
||||
st->codec->codec_id = CODEC_ID_PCM_S32LE;
|
||||
break;
|
||||
case CODEC_ID_PCM_F32BE:
|
||||
st->codec->codec_id = CODEC_ID_PCM_F32LE;
|
||||
break;
|
||||
case CODEC_ID_PCM_F64BE:
|
||||
st->codec->codec_id = CODEC_ID_PCM_F64LE;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user