h264: add H264_ prefix to the NAL unit types
This will prevent conflicts e.g. in code that deals with both h264 and hevc.
This commit is contained in:
parent
1cf2f3d334
commit
5c2fb561d9
8 changed files with 65 additions and 65 deletions
|
@ -283,7 +283,7 @@ static void vaapi_encode_h264_write_sps(PutBitContext *pbc,
|
|||
VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
|
||||
int i;
|
||||
|
||||
vaapi_encode_h264_write_nal_header(pbc, NAL_SPS, 3);
|
||||
vaapi_encode_h264_write_nal_header(pbc, H264_NAL_SPS, 3);
|
||||
|
||||
u(8, mseq_var(profile_idc));
|
||||
u(1, mseq_var(constraint_set0_flag));
|
||||
|
@ -368,7 +368,7 @@ static void vaapi_encode_h264_write_pps(PutBitContext *pbc,
|
|||
VAAPIEncodeH264Context *priv = ctx->priv_data;
|
||||
VAAPIEncodeH264MiscSequenceParams *mseq = &priv->misc_sequence_params;
|
||||
|
||||
vaapi_encode_h264_write_nal_header(pbc, NAL_PPS, 3);
|
||||
vaapi_encode_h264_write_nal_header(pbc, H264_NAL_PPS, 3);
|
||||
|
||||
ue(vpic_var(pic_parameter_set_id));
|
||||
ue(vpic_var(seq_parameter_set_id));
|
||||
|
@ -642,7 +642,7 @@ static void vaapi_encode_h264_write_sei(PutBitContext *pbc,
|
|||
VAAPIEncodeContext *ctx,
|
||||
VAAPIEncodePicture *pic) = NULL;
|
||||
|
||||
vaapi_encode_h264_write_nal_header(pbc, NAL_SEI, 0);
|
||||
vaapi_encode_h264_write_nal_header(pbc, H264_NAL_SEI, 0);
|
||||
|
||||
for (payload_type = 0; payload_type < 64; payload_type++) {
|
||||
switch (payload_type) {
|
||||
|
@ -1010,9 +1010,9 @@ static int vaapi_encode_h264_init_slice_params(AVCodecContext *avctx,
|
|||
mslice = &pslice->misc_slice_params;
|
||||
|
||||
if (pic->type == PICTURE_TYPE_IDR)
|
||||
mslice->nal_unit_type = NAL_IDR_SLICE;
|
||||
mslice->nal_unit_type = H264_NAL_IDR_SLICE;
|
||||
else
|
||||
mslice->nal_unit_type = NAL_SLICE;
|
||||
mslice->nal_unit_type = H264_NAL_SLICE;
|
||||
|
||||
switch (pic->type) {
|
||||
case PICTURE_TYPE_IDR:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue