Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions av2/common/annexA.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ int av2_check_profile_interop_conformance(
is_decoder ? AVM_CODEC_UNSUP_BITSTREAM : AVM_CODEC_INVALID_PARAM,
"Profile %d only supports YUV 4:0:0 and YUV 4:2:0 color formats, "
"but color format YUV %s was provided.",
(BITSTREAM_PROFILE)profile, is_422 ? "4:2:2" : "4:4:4");
(int)profile, is_422 ? "4:2:2" : "4:4:4");
Comment thread
urvangjoshi marked this conversation as resolved.
}
break;
case MAIN_422_10_IP1:
Expand All @@ -232,7 +232,7 @@ int av2_check_profile_interop_conformance(
is_decoder ? AVM_CODEC_UNSUP_BITSTREAM : AVM_CODEC_INVALID_PARAM,
"Profile %d only supports YUV 4:0:0, YUV 4:2:0 and YUV 4:2:2 color "
"formats, but color format YUV 4:4:4 was provided.",
(BITSTREAM_PROFILE)profile);
(int)profile);
}
break;
case MAIN_444_10_IP1:
Expand All @@ -246,7 +246,7 @@ int av2_check_profile_interop_conformance(
is_decoder ? AVM_CODEC_UNSUP_BITSTREAM : AVM_CODEC_INVALID_PARAM,
"Profile %d only supports YUV 4:0:0, YUV 4:2:0 and YUV 4:4:4 color "
"formats, but color format YUV 4:2:2 was provided.",
(BITSTREAM_PROFILE)profile);
(int)profile);
}
break;
case CONFIGURABLE: {
Expand Down