diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-03-26 18:25:01 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-27 14:21:45 +0100 |
commit | eee2000b41234ae9465c314e18bfec1700181f32 (patch) | |
tree | f39d096c67a6a30e2333356f51d23ec62a01446a /libavcodec/mpeg12.h | |
parent | b6649ab5037fb55f78c2606f3d23cea0867cdeaa (diff) | |
download | ffmpeg-eee2000b41234ae9465c314e18bfec1700181f32.tar.gz |
mpeg12: Move some ff_mpeg1_* function declarations to a more suitable place
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 cf807ec8ff..39c45a59d5 100644 --- a/libavcodec/mpeg12.h +++ b/libavcodec/mpeg12.h @@ -72,5 +72,7 @@ static inline int decode_dc(GetBitContext *gb, int component) } int ff_mpeg1_decode_block_intra(MpegEncContext *s, int16_t *block, int n); +void ff_mpeg1_clean_buffers(MpegEncContext *s); +int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s); #endif /* AVCODEC_MPEG12_H */ |