diff options
author | Marton Balint <cus@passwd.hu> | 2023-01-22 01:06:56 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2023-01-26 20:37:01 +0100 |
commit | 103617c93c583355474c59599533735d31dc7f9a (patch) | |
tree | 94736c20ec92d041ce9d984fd8761ea09a27ec33 /libavcodec/wmv2enc.h | |
parent | 91c29cf9344855bf33bdcd6add2a61a88e468611 (diff) | |
download | ffmpeg-103617c93c583355474c59599533735d31dc7f9a.tar.gz |
avcodec/mpegvideo_enc: remove picture_number parameter from encode functions
They are unused.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec/wmv2enc.h')
-rw-r--r-- | libavcodec/wmv2enc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmv2enc.h b/libavcodec/wmv2enc.h index 3f7f5104a6..263265acf3 100644 --- a/libavcodec/wmv2enc.h +++ b/libavcodec/wmv2enc.h @@ -23,7 +23,7 @@ #include "mpegvideo.h" -int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number); +int ff_wmv2_encode_picture_header(MpegEncContext * s); void ff_wmv2_encode_mb(MpegEncContext * s, int16_t block[6][64], int motion_x, int motion_y); |