lavf/movenc: small cleanup for style

Small cleanup for style, indent, switch case lables.
BTW, the preferred way to ease multiple indentation levels in a
switch statement is to align the switch and its subordinate
case labels in the same column

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
Jun Zhao 2024-03-21 10:31:13 +08:00 committed by Jun Zhao
parent b792e4d4c7
commit 5ebcca4e08

View File

@ -4853,8 +4853,7 @@ static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov, AVFormat
param_write_int(pb, "DisplayHeight", track->par->height); param_write_int(pb, "DisplayHeight", track->par->height);
} else { } else {
if (track->par->codec_id == AV_CODEC_ID_AAC) { if (track->par->codec_id == AV_CODEC_ID_AAC) {
switch (track->par->profile) switch (track->par->profile) {
{
case AV_PROFILE_AAC_HE_V2: case AV_PROFILE_AAC_HE_V2:
param_write_string(pb, "FourCC", "AACP"); param_write_string(pb, "FourCC", "AACP");
break; break;