diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-12 19:51:36 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-20 00:20:15 +0200 |
commit | 8edf6c3bf14dd9cd0086922f3a57eb4bef65c7e4 (patch) | |
tree | e17fd5f6440460e951fa73b0012a44b94394ec15 /libavcodec/mpeg12.h | |
parent | dd846bc4a9163f875cc2c4e99325c1a7b4ab8e7d (diff) | |
download | ffmpeg-8edf6c3bf14dd9cd0086922f3a57eb4bef65c7e4.tar.gz |
avcodec/(h263|mpeg4?video)_parser: Make *_find_frame_end() static
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpeg12.h')
-rw-r--r-- | libavcodec/mpeg12.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpeg12.h b/libavcodec/mpeg12.h index a7b94c132a..fb2b37e7c8 100644 --- a/libavcodec/mpeg12.h +++ b/libavcodec/mpeg12.h @@ -70,7 +70,9 @@ int ff_mpeg1_decode_block_intra(GetBitContext *gb, int16_t *block, int index, int qscale); void ff_mpeg1_clean_buffers(MpegEncContext *s); +#if FF_API_FLAG_TRUNCATED int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s); +#endif void ff_mpeg1_encode_picture_header(MpegEncContext *s, int picture_number); void ff_mpeg1_encode_mb(MpegEncContext *s, int16_t block[8][64], |