summaryrefslogtreecommitdiff
path: root/vstream
diff options
context:
space:
mode:
authorMarcin Koƛcielnicki <koriakin@0x04.net>2011-12-24 05:57:09 +0100
committerMarcin Koƛcielnicki <koriakin@0x04.net>2011-12-24 05:57:09 +0100
commit8ef41cb65d80fe4b27febd60558fa898d4293b44 (patch)
treeb065e0c65751c12eab8d5755e1b6319303ed8070 /vstream
parent5de0801e2de9f3519c36465a295ee27c1b402d16 (diff)
h264: Add High 4:4:4 profile name.
Diffstat (limited to 'vstream')
-rw-r--r--vstream/h264_print.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vstream/h264_print.c b/vstream/h264_print.c
index 805da8a3..f3de01cb 100644
--- a/vstream/h264_print.c
+++ b/vstream/h264_print.c
@@ -63,6 +63,9 @@ void h264_print_seqparm(struct h264_seqparm *seqparm) {
case H264_PROFILE_HIGH_422:
profile_name = "High 4:2:2";
break;
+ case H264_PROFILE_HIGH_444:
+ profile_name = "High 4:4:4";
+ break;
case H264_PROFILE_HIGH_444_PRED:
profile_name = "High 4:4:4 Predictive";
break;