mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/av1_parse: use macro for MAX_OBU_HEADER_SIZE
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
3c05c8a15f
commit
6a941b5691
|
@ -27,6 +27,9 @@
|
|||
#include "avcodec.h"
|
||||
#include "get_bits.h"
|
||||
|
||||
// OBU header fields + max leb128 length
|
||||
#define MAX_OBU_HEADER_SIZE (2 + 8)
|
||||
|
||||
typedef struct AV1OBU {
|
||||
/** Size of payload */
|
||||
int size;
|
||||
|
@ -105,7 +108,7 @@ static inline int parse_obu_header(const uint8_t *buf, int buf_size,
|
|||
int ret, extension_flag, has_size_flag;
|
||||
int64_t size;
|
||||
|
||||
ret = init_get_bits8(&gb, buf, FFMIN(buf_size, 2 + 8)); // OBU header fields + max leb128 length
|
||||
ret = init_get_bits8(&gb, buf, FFMIN(buf_size, MAX_OBU_HEADER_SIZE));
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
|
|
Loading…
Reference in New Issue