Skip to content

Commit

Permalink
lavc/libx264: replace ITU-T T35(A/53 CC) SEI type by enum value
Browse files Browse the repository at this point in the history
replace ITU-T T35(A/53 CC) SEI type by enum value

Reviewed-by: Kieran Kunhya <kierank@obe.tv>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
  • Loading branch information
mypopydev committed Aug 27, 2023
1 parent 3c9dc00 commit c48ec95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/libx264.c
Expand Up @@ -563,7 +563,7 @@ FF_ENABLE_DEPRECATION_WARNINGS

sei->payloads[0].payload_size = sei_size;
sei->payloads[0].payload = sei_data;
sei->payloads[0].payload_type = 4;
sei->payloads[0].payload_type = SEI_TYPE_USER_DATA_REGISTERED_ITU_T_T35;
sei->num_payloads = 1;
}
}
Expand Down

0 comments on commit c48ec95

Please sign in to comment.