mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-04-27 09:43:11 +08:00
avcodec/hevc_sei: rename HEVCSEIContext to HEVCSEI
Cosmetic change skipped in 0b30cb8dae
by mistake.
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -124,7 +124,7 @@ static int decode_nal_sei_display_orientation(HEVCSEIDisplayOrientation *s, GetB
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int decode_nal_sei_pic_timing(HEVCSEIContext *s, GetBitContext *gb, const HEVCParamSets *ps,
|
||||
static int decode_nal_sei_pic_timing(HEVCSEI *s, GetBitContext *gb, const HEVCParamSets *ps,
|
||||
void *logctx, int size)
|
||||
{
|
||||
HEVCSEIPictureTiming *h = &s->picture_timing;
|
||||
@@ -205,7 +205,7 @@ static int decode_registered_user_data_closed_caption(HEVCSEIA53Caption *s, GetB
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int decode_nal_sei_user_data_registered_itu_t_t35(HEVCSEIContext *s, GetBitContext *gb,
|
||||
static int decode_nal_sei_user_data_registered_itu_t_t35(HEVCSEI *s, GetBitContext *gb,
|
||||
int size)
|
||||
{
|
||||
uint32_t country_code;
|
||||
@@ -236,7 +236,7 @@ static int decode_nal_sei_user_data_registered_itu_t_t35(HEVCSEIContext *s, GetB
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int decode_nal_sei_active_parameter_sets(HEVCSEIContext *s, GetBitContext *gb, void *logctx)
|
||||
static int decode_nal_sei_active_parameter_sets(HEVCSEI *s, GetBitContext *gb, void *logctx)
|
||||
{
|
||||
int num_sps_ids_minus1;
|
||||
int i;
|
||||
@@ -272,7 +272,7 @@ static int decode_nal_sei_alternative_transfer(HEVCSEIAlternativeTransfer *s, Ge
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int decode_nal_sei_prefix(GetBitContext *gb, HEVCSEIContext *s, const HEVCParamSets *ps,
|
||||
static int decode_nal_sei_prefix(GetBitContext *gb, HEVCSEI *s, const HEVCParamSets *ps,
|
||||
int type, int size, void *logctx)
|
||||
{
|
||||
switch (type) {
|
||||
@@ -301,7 +301,7 @@ static int decode_nal_sei_prefix(GetBitContext *gb, HEVCSEIContext *s, const HEV
|
||||
}
|
||||
}
|
||||
|
||||
static int decode_nal_sei_suffix(GetBitContext *gb, HEVCSEIContext *s,
|
||||
static int decode_nal_sei_suffix(GetBitContext *gb, HEVCSEI *s,
|
||||
int type, int size, void *logctx)
|
||||
{
|
||||
switch (type) {
|
||||
@@ -314,7 +314,7 @@ static int decode_nal_sei_suffix(GetBitContext *gb, HEVCSEIContext *s,
|
||||
}
|
||||
}
|
||||
|
||||
static int decode_nal_sei_message(GetBitContext *gb, HEVCSEIContext *s,
|
||||
static int decode_nal_sei_message(GetBitContext *gb, HEVCSEI *s,
|
||||
const HEVCParamSets *ps, int nal_unit_type,
|
||||
void *logctx)
|
||||
{
|
||||
@@ -344,7 +344,7 @@ static int more_rbsp_data(GetBitContext *gb)
|
||||
return get_bits_left(gb) > 0 && show_bits(gb, 8) != 0x80;
|
||||
}
|
||||
|
||||
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEIContext *s,
|
||||
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s,
|
||||
const HEVCParamSets *ps, int type)
|
||||
{
|
||||
int ret;
|
||||
@@ -357,7 +357,7 @@ int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEIContext *s,
|
||||
return 1;
|
||||
}
|
||||
|
||||
void ff_hevc_reset_sei(HEVCSEIContext *s)
|
||||
void ff_hevc_reset_sei(HEVCSEI *s)
|
||||
{
|
||||
s->a53_caption.a53_caption_size = 0;
|
||||
av_freep(&s->a53_caption.a53_caption);
|
||||
|
||||
Reference in New Issue
Block a user