mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avcodec/videotoolboxenc: Fix SEI enum identifiers
Broken in 64b3aac8d0.
Tested-by: Mark Himsley <mark.himsley@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
ff9bf372f7
commit
53db591a2e
1 changed files with 3 additions and 3 deletions
|
|
@ -1751,7 +1751,7 @@ static int copy_replace_length_codes(
|
|||
remaining_dst_size--;
|
||||
|
||||
wrote_bytes = write_sei(sei,
|
||||
SEI_TYPE_USER_DATA_REGISTERED,
|
||||
SEI_TYPE_USER_DATA_REGISTERED_ITU_T_T35,
|
||||
dst_data,
|
||||
remaining_dst_size);
|
||||
|
||||
|
|
@ -1807,7 +1807,7 @@ static int copy_replace_length_codes(
|
|||
return status;
|
||||
|
||||
wrote_bytes = write_sei(sei,
|
||||
SEI_TYPE_USER_DATA_REGISTERED,
|
||||
SEI_TYPE_USER_DATA_REGISTERED_ITU_T_T35,
|
||||
new_sei,
|
||||
remaining_dst_size - old_sei_length);
|
||||
if (wrote_bytes < 0)
|
||||
|
|
@ -1903,7 +1903,7 @@ static int vtenc_cm_to_avpacket(
|
|||
|
||||
if (sei) {
|
||||
size_t msg_size = get_sei_msg_bytes(sei,
|
||||
SEI_TYPE_USER_DATA_REGISTERED);
|
||||
SEI_TYPE_USER_DATA_REGISTERED_ITU_T_T35);
|
||||
|
||||
sei_nalu_size = sizeof(start_code) + 1 + msg_size + 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue