mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avcodec/h264_sei, sei: Make H264_SEI_FpaType generic
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
3bafc4ead4
commit
38d0d12c46
@ -57,7 +57,7 @@ typedef struct H2645SEIFramePacking {
|
|||||||
int present;
|
int present;
|
||||||
int arrangement_id;
|
int arrangement_id;
|
||||||
int arrangement_cancel_flag; ///< is previous arrangement canceled, -1 if never received (currently H.264 only)
|
int arrangement_cancel_flag; ///< is previous arrangement canceled, -1 if never received (currently H.264 only)
|
||||||
int arrangement_type;
|
SEIFpaType arrangement_type;
|
||||||
int arrangement_repetition_period;
|
int arrangement_repetition_period;
|
||||||
int content_interpretation_type;
|
int content_interpretation_type;
|
||||||
int quincunx_sampling_flag;
|
int quincunx_sampling_flag;
|
||||||
|
@ -307,37 +307,37 @@ const char *ff_h264_sei_stereo_mode(const H2645SEIFramePacking *h)
|
|||||||
{
|
{
|
||||||
if (h->arrangement_cancel_flag == 0) {
|
if (h->arrangement_cancel_flag == 0) {
|
||||||
switch (h->arrangement_type) {
|
switch (h->arrangement_type) {
|
||||||
case H264_SEI_FPA_TYPE_CHECKERBOARD:
|
case SEI_FPA_H264_TYPE_CHECKERBOARD:
|
||||||
if (h->content_interpretation_type == 2)
|
if (h->content_interpretation_type == 2)
|
||||||
return "checkerboard_rl";
|
return "checkerboard_rl";
|
||||||
else
|
else
|
||||||
return "checkerboard_lr";
|
return "checkerboard_lr";
|
||||||
case H264_SEI_FPA_TYPE_INTERLEAVE_COLUMN:
|
case SEI_FPA_H264_TYPE_INTERLEAVE_COLUMN:
|
||||||
if (h->content_interpretation_type == 2)
|
if (h->content_interpretation_type == 2)
|
||||||
return "col_interleaved_rl";
|
return "col_interleaved_rl";
|
||||||
else
|
else
|
||||||
return "col_interleaved_lr";
|
return "col_interleaved_lr";
|
||||||
case H264_SEI_FPA_TYPE_INTERLEAVE_ROW:
|
case SEI_FPA_H264_TYPE_INTERLEAVE_ROW:
|
||||||
if (h->content_interpretation_type == 2)
|
if (h->content_interpretation_type == 2)
|
||||||
return "row_interleaved_rl";
|
return "row_interleaved_rl";
|
||||||
else
|
else
|
||||||
return "row_interleaved_lr";
|
return "row_interleaved_lr";
|
||||||
case H264_SEI_FPA_TYPE_SIDE_BY_SIDE:
|
case SEI_FPA_TYPE_SIDE_BY_SIDE:
|
||||||
if (h->content_interpretation_type == 2)
|
if (h->content_interpretation_type == 2)
|
||||||
return "right_left";
|
return "right_left";
|
||||||
else
|
else
|
||||||
return "left_right";
|
return "left_right";
|
||||||
case H264_SEI_FPA_TYPE_TOP_BOTTOM:
|
case SEI_FPA_TYPE_TOP_BOTTOM:
|
||||||
if (h->content_interpretation_type == 2)
|
if (h->content_interpretation_type == 2)
|
||||||
return "bottom_top";
|
return "bottom_top";
|
||||||
else
|
else
|
||||||
return "top_bottom";
|
return "top_bottom";
|
||||||
case H264_SEI_FPA_TYPE_INTERLEAVE_TEMPORAL:
|
case SEI_FPA_TYPE_INTERLEAVE_TEMPORAL:
|
||||||
if (h->content_interpretation_type == 2)
|
if (h->content_interpretation_type == 2)
|
||||||
return "block_rl";
|
return "block_rl";
|
||||||
else
|
else
|
||||||
return "block_lr";
|
return "block_lr";
|
||||||
case H264_SEI_FPA_TYPE_2D:
|
case SEI_FPA_H264_TYPE_2D:
|
||||||
default:
|
default:
|
||||||
return "mono";
|
return "mono";
|
||||||
}
|
}
|
||||||
|
@ -40,19 +40,6 @@ typedef enum {
|
|||||||
H264_SEI_PIC_STRUCT_FRAME_TRIPLING = 8 ///< 8: %frame tripling
|
H264_SEI_PIC_STRUCT_FRAME_TRIPLING = 8 ///< 8: %frame tripling
|
||||||
} H264_SEI_PicStructType;
|
} H264_SEI_PicStructType;
|
||||||
|
|
||||||
/**
|
|
||||||
* frame_packing_arrangement types
|
|
||||||
*/
|
|
||||||
typedef enum {
|
|
||||||
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 H264SEITimeCode {
|
typedef struct H264SEITimeCode {
|
||||||
/* When not continuously receiving full timecodes, we have to reference
|
/* When not continuously receiving full timecodes, we have to reference
|
||||||
the previous timecode received */
|
the previous timecode received */
|
||||||
|
@ -1235,28 +1235,28 @@ static int h264_export_frame_props(H264Context *h)
|
|||||||
AVStereo3D *stereo = av_stereo3d_create_side_data(out);
|
AVStereo3D *stereo = av_stereo3d_create_side_data(out);
|
||||||
if (stereo) {
|
if (stereo) {
|
||||||
switch (fp->arrangement_type) {
|
switch (fp->arrangement_type) {
|
||||||
case H264_SEI_FPA_TYPE_CHECKERBOARD:
|
case SEI_FPA_H264_TYPE_CHECKERBOARD:
|
||||||
stereo->type = AV_STEREO3D_CHECKERBOARD;
|
stereo->type = AV_STEREO3D_CHECKERBOARD;
|
||||||
break;
|
break;
|
||||||
case H264_SEI_FPA_TYPE_INTERLEAVE_COLUMN:
|
case SEI_FPA_H264_TYPE_INTERLEAVE_COLUMN:
|
||||||
stereo->type = AV_STEREO3D_COLUMNS;
|
stereo->type = AV_STEREO3D_COLUMNS;
|
||||||
break;
|
break;
|
||||||
case H264_SEI_FPA_TYPE_INTERLEAVE_ROW:
|
case SEI_FPA_H264_TYPE_INTERLEAVE_ROW:
|
||||||
stereo->type = AV_STEREO3D_LINES;
|
stereo->type = AV_STEREO3D_LINES;
|
||||||
break;
|
break;
|
||||||
case H264_SEI_FPA_TYPE_SIDE_BY_SIDE:
|
case SEI_FPA_TYPE_SIDE_BY_SIDE:
|
||||||
if (fp->quincunx_sampling_flag)
|
if (fp->quincunx_sampling_flag)
|
||||||
stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
|
stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
|
||||||
else
|
else
|
||||||
stereo->type = AV_STEREO3D_SIDEBYSIDE;
|
stereo->type = AV_STEREO3D_SIDEBYSIDE;
|
||||||
break;
|
break;
|
||||||
case H264_SEI_FPA_TYPE_TOP_BOTTOM:
|
case SEI_FPA_TYPE_TOP_BOTTOM:
|
||||||
stereo->type = AV_STEREO3D_TOPBOTTOM;
|
stereo->type = AV_STEREO3D_TOPBOTTOM;
|
||||||
break;
|
break;
|
||||||
case H264_SEI_FPA_TYPE_INTERLEAVE_TEMPORAL:
|
case SEI_FPA_TYPE_INTERLEAVE_TEMPORAL:
|
||||||
stereo->type = AV_STEREO3D_FRAMESEQUENCE;
|
stereo->type = AV_STEREO3D_FRAMESEQUENCE;
|
||||||
break;
|
break;
|
||||||
case H264_SEI_FPA_TYPE_2D:
|
case SEI_FPA_H264_TYPE_2D:
|
||||||
stereo->type = AV_STEREO3D_2D;
|
stereo->type = AV_STEREO3D_2D;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1264,7 +1264,7 @@ static int h264_export_frame_props(H264Context *h)
|
|||||||
if (fp->content_interpretation_type == 2)
|
if (fp->content_interpretation_type == 2)
|
||||||
stereo->flags = AV_STEREO3D_FLAG_INVERT;
|
stereo->flags = AV_STEREO3D_FLAG_INVERT;
|
||||||
|
|
||||||
if (fp->arrangement_type == H264_SEI_FPA_TYPE_INTERLEAVE_TEMPORAL) {
|
if (fp->arrangement_type == SEI_FPA_TYPE_INTERLEAVE_TEMPORAL) {
|
||||||
if (fp->current_frame_is_frame0_flag)
|
if (fp->current_frame_is_frame0_flag)
|
||||||
stereo->view = AV_STEREO3D_VIEW_LEFT;
|
stereo->view = AV_STEREO3D_VIEW_LEFT;
|
||||||
else
|
else
|
||||||
|
@ -137,4 +137,21 @@ enum SEIType {
|
|||||||
SEI_TYPE_SAMPLE_ASPECT_RATIO_INFO = 204,
|
SEI_TYPE_SAMPLE_ASPECT_RATIO_INFO = 204,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* frame_packing_arrangement types. H.265 and H.274 use only 3..5
|
||||||
|
* with all the other values being reserved. H.264 uses a few more values
|
||||||
|
* that are prefixed with SEI_FPA_H264 in the enum below.
|
||||||
|
*
|
||||||
|
* The semantics of the common values are the same for all standards.
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
SEI_FPA_H264_TYPE_CHECKERBOARD = 0,
|
||||||
|
SEI_FPA_H264_TYPE_INTERLEAVE_COLUMN = 1,
|
||||||
|
SEI_FPA_H264_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_H264_TYPE_2D = 6,
|
||||||
|
} SEIFpaType;
|
||||||
|
|
||||||
#endif /* AVCODEC_SEI_H */
|
#endif /* AVCODEC_SEI_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user