forked from FFmpeg/FFmpeg
avcodec/hevc_sei: Use proper type for NALU type
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
6f5e0a7294
commit
aba0cc4465
2 changed files with 3 additions and 2 deletions
|
@ -550,7 +550,7 @@ static int decode_nal_sei_message(GetByteContext *gb, void *logctx, HEVCSEI *s,
|
|||
}
|
||||
|
||||
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s,
|
||||
const HEVCParamSets *ps, int type)
|
||||
const HEVCParamSets *ps, enum HEVCNALUnitType type)
|
||||
{
|
||||
GetByteContext gbyte;
|
||||
int ret;
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include "libavutil/buffer.h"
|
||||
|
||||
#include "get_bits.h"
|
||||
#include "hevc.h"
|
||||
#include "sei.h"
|
||||
|
||||
|
||||
|
@ -154,7 +155,7 @@ typedef struct HEVCSEI {
|
|||
struct HEVCParamSets;
|
||||
|
||||
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s,
|
||||
const struct HEVCParamSets *ps, int type);
|
||||
const struct HEVCParamSets *ps, enum HEVCNALUnitType type);
|
||||
|
||||
/**
|
||||
* Reset SEI values that are stored on the Context.
|
||||
|
|
Loading…
Add table
Reference in a new issue