[FFmpeg-cvslog] avformat/webpenc: Use init instead of write_header function
Andreas Rheinhardt
git at videolan.org
Wed Mar 24 02:03:11 EET 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Thu Mar 18 22:15:36 2021 +0100| [484a322f0a01d50175a5819b5f5925891dd45240] | committer: Andreas Rheinhardt
avformat/webpenc: Use init instead of write_header function
webp_write_header() didn't write anything.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=484a322f0a01d50175a5819b5f5925891dd45240
---
libavformat/webpenc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c
index 9fb472257d..8c32ff66df 100644
--- a/libavformat/webpenc.c
+++ b/libavformat/webpenc.c
@@ -33,7 +33,7 @@ typedef struct WebpContext{
int using_webp_anim_encoder;
} WebpContext;
-static int webp_write_header(AVFormatContext *s)
+static int webp_init(AVFormatContext *s)
{
AVStream *st;
@@ -210,7 +210,7 @@ AVOutputFormat ff_webp_muxer = {
.extensions = "webp",
.priv_data_size = sizeof(WebpContext),
.video_codec = AV_CODEC_ID_WEBP,
- .write_header = webp_write_header,
+ .init = webp_init,
.write_packet = webp_write_packet,
.write_trailer = webp_write_trailer,
.priv_class = &webp_muxer_class,
More information about the ffmpeg-cvslog
mailing list