You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-25 14:23:15 +02:00
lavc/hevc_parse: Don't take a HEVCContext
It's not even used anymore, and the checks are no longer functionally important. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
@ -239,7 +239,7 @@ static inline int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
|
||||
src_length = 20;
|
||||
}
|
||||
|
||||
consumed = ff_hevc_extract_rbsp(NULL, buf, src_length, nal);
|
||||
consumed = ff_hevc_extract_rbsp(buf, src_length, nal);
|
||||
if (consumed < 0)
|
||||
return consumed;
|
||||
|
||||
|
Reference in New Issue
Block a user