summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-09-12 19:59:23 -0300
committerJames Almer <jamrial@gmail.com>2017-09-12 19:59:23 -0300
commit9669c05baf37025f6fa038dc6b00b45f9c57de90 (patch)
tree6817ee06e61398901f6b54f06a513b427a3f59e8 /libavcodec/h264_sei.h
parent6eb102a616364d06a4cc994339b72910b3547e5f (diff)
downloadffmpeg-9669c05baf37025f6fa038dc6b00b45f9c57de90.tar.gz
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.h')
-rw-r--r--libavcodec/h264_sei.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/h264_sei.h b/libavcodec/h264_sei.h
index 8cad5ea997..a53f1899fa 100644
--- a/libavcodec/h264_sei.h
+++ b/libavcodec/h264_sei.h
@@ -56,14 +56,14 @@ typedef enum {
* frame_packing_arrangement types
*/
typedef enum {
- SEI_FPA_TYPE_CHECKERBOARD = 0,
- SEI_FPA_TYPE_INTERLEAVE_COLUMN = 1,
- SEI_FPA_TYPE_INTERLEAVE_ROW = 2,
- SEI_FPA_TYPE_SIDE_BY_SIDE = 3,
- SEI_FPA_TYPE_TOP_BOTTOM = 4,
- SEI_FPA_TYPE_INTERLEAVE_TEMPORAL = 5,
- SEI_FPA_TYPE_2D = 6,
-} SEI_FpaType;
+ H264_SEI_FPA_TYPE_CHECKERBOARD = 0,
+ H264_SEI_FPA_TYPE_INTERLEAVE_COLUMN = 1,
+ H264_SEI_FPA_TYPE_INTERLEAVE_ROW = 2,
+ H264_SEI_FPA_TYPE_SIDE_BY_SIDE = 3,
+ H264_SEI_FPA_TYPE_TOP_BOTTOM = 4,
+ H264_SEI_FPA_TYPE_INTERLEAVE_TEMPORAL = 5,
+ H264_SEI_FPA_TYPE_2D = 6,
+} H264_SEI_FpaType;
typedef struct H264SEIPictureTiming {
int present;
@@ -121,7 +121,7 @@ typedef struct H264SEIFramePacking {
int present;
int frame_packing_arrangement_id;
int frame_packing_arrangement_cancel_flag; ///< is previous arrangement canceled, -1 if never received
- SEI_FpaType frame_packing_arrangement_type;
+ H264_SEI_FpaType frame_packing_arrangement_type;
int frame_packing_arrangement_repetition_period;
int content_interpretation_type;
int quincunx_sampling_flag;