diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-02 21:49:53 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-06 15:00:21 +0200 |
commit | d74ca6fdb4255ef8009355ebf6acbd0629047009 (patch) | |
tree | 06ceb82a0d7a34fa82bb90ebced0939ab2eae78a /libavcodec/h261enc.h | |
parent | 759d216c47080660bbcee7f0c693d383fdf45808 (diff) | |
download | ffmpeg-d74ca6fdb4255ef8009355ebf6acbd0629047009.tar.gz |
avcodec/mpegvideo_enc: Move H.261 size check to h261enc.c
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/h261enc.h')
-rw-r--r-- | libavcodec/h261enc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261enc.h b/libavcodec/h261enc.h index 0a01858be5..088cd9f4e0 100644 --- a/libavcodec/h261enc.h +++ b/libavcodec/h261enc.h @@ -35,6 +35,6 @@ void ff_h261_reorder_mb_index(MpegEncContext *s); void ff_h261_encode_mb(MpegEncContext *s, int16_t block[6][64], int motion_x, int motion_y); void ff_h261_encode_picture_header(MpegEncContext *s, int picture_number); -void ff_h261_encode_init(MpegEncContext *s); +int ff_h261_encode_init(MpegEncContext *s); #endif |