mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-03 22:50:36 +00: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:
@@ -40,7 +40,7 @@ typedef struct HEVCParserContext {
|
||||
|
||||
H2645Packet pkt;
|
||||
HEVCParamSets ps;
|
||||
HEVCSEIContext sei;
|
||||
HEVCSEI sei;
|
||||
SliceHeader sh;
|
||||
|
||||
int parsed_extradata;
|
||||
@@ -54,7 +54,7 @@ static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal,
|
||||
{
|
||||
HEVCParserContext *ctx = s->priv_data;
|
||||
HEVCParamSets *ps = &ctx->ps;
|
||||
HEVCSEIContext *sei = &ctx->sei;
|
||||
HEVCSEI *sei = &ctx->sei;
|
||||
SliceHeader *sh = &ctx->sh;
|
||||
GetBitContext *gb = &nal->gb;
|
||||
const HEVCWindow *ow;
|
||||
@@ -180,7 +180,7 @@ static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
|
||||
{
|
||||
HEVCParserContext *ctx = s->priv_data;
|
||||
HEVCParamSets *ps = &ctx->ps;
|
||||
HEVCSEIContext *sei = &ctx->sei;
|
||||
HEVCSEI *sei = &ctx->sei;
|
||||
int is_global = buf == avctx->extradata;
|
||||
int ret, i;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user