Commit d89c4846 authored by Yann Coupin's avatar Yann Coupin Committed by Michael Niedermayer

avformat/movenc: HE-AAC correct FourCC in ISML

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 9696a01f
...@@ -3334,7 +3334,17 @@ static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov) ...@@ -3334,7 +3334,17 @@ static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov)
param_write_int(pb, "DisplayHeight", track->enc->height); param_write_int(pb, "DisplayHeight", track->enc->height);
} else { } else {
if (track->enc->codec_id == AV_CODEC_ID_AAC) { if (track->enc->codec_id == AV_CODEC_ID_AAC) {
param_write_string(pb, "FourCC", "AACL"); switch (track->enc->profile)
{
case FF_PROFILE_AAC_HE_V2:
param_write_string(pb, "FourCC", "AACP");
break;
case FF_PROFILE_AAC_HE:
param_write_string(pb, "FourCC", "AACH");
break;
default:
param_write_string(pb, "FourCC", "AACL");
}
} else if (track->enc->codec_id == AV_CODEC_ID_WMAPRO) { } else if (track->enc->codec_id == AV_CODEC_ID_WMAPRO) {
param_write_string(pb, "FourCC", "WMAP"); param_write_string(pb, "FourCC", "WMAP");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment