Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-09-13 01:59:23 +0300
committerJames Almer <jamrial@gmail.com>2017-09-13 01:59:23 +0300
commit9669c05baf37025f6fa038dc6b00b45f9c57de90 (patch)
tree6817ee06e61398901f6b54f06a513b427a3f59e8 /libavcodec/h264_sei.c
parent6eb102a616364d06a4cc994339b72910b3547e5f (diff)
avcodec/h264_sei: add namespace prefix to frame packingarrangement enum values
Missed in 6eb102a616364d06a4cc994339b72910b3547e5f. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r--libavcodec/h264_sei.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index 2afe48e2fe..332ae50860 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -469,37 +469,37 @@ const char *ff_h264_sei_stereo_mode(const H264SEIFramePacking *h)
{
if (h->frame_packing_arrangement_cancel_flag == 0) {
switch (h->frame_packing_arrangement_type) {
- case SEI_FPA_TYPE_CHECKERBOARD:
+ case H264_SEI_FPA_TYPE_CHECKERBOARD:
if (h->content_interpretation_type == 2)
return "checkerboard_rl";
else
return "checkerboard_lr";
- case SEI_FPA_TYPE_INTERLEAVE_COLUMN:
+ case H264_SEI_FPA_TYPE_INTERLEAVE_COLUMN:
if (h->content_interpretation_type == 2)
return "col_interleaved_rl";
else
return "col_interleaved_lr";
- case SEI_FPA_TYPE_INTERLEAVE_ROW:
+ case H264_SEI_FPA_TYPE_INTERLEAVE_ROW:
if (h->content_interpretation_type == 2)
return "row_interleaved_rl";
else
return "row_interleaved_lr";
- case SEI_FPA_TYPE_SIDE_BY_SIDE:
+ case H264_SEI_FPA_TYPE_SIDE_BY_SIDE:
if (h->content_interpretation_type == 2)
return "right_left";
else
return "left_right";
- case SEI_FPA_TYPE_TOP_BOTTOM:
+ case H264_SEI_FPA_TYPE_TOP_BOTTOM:
if (h->content_interpretation_type == 2)
return "bottom_top";
else
return "top_bottom";
- case SEI_FPA_TYPE_INTERLEAVE_TEMPORAL:
+ case H264_SEI_FPA_TYPE_INTERLEAVE_TEMPORAL:
if (h->content_interpretation_type == 2)
return "block_rl";
else
return "block_lr";
- case SEI_FPA_TYPE_2D:
+ case H264_SEI_FPA_TYPE_2D:
default:
return "mono";
}