diff mbox series

[FFmpeg-devel,07/11] avformat/mpjpeg: Remove mpjpeg_write_trailer

Message ID 20200107135549.22581-7-andreas.rheinhardt@gmail.com
State Accepted
Headers show
Series [FFmpeg-devel,01/11] avformat/avformat: Update AVInputFormat.read_packet documentation | expand

Checks

Context Check Description
andriy/ffmpeg-patchwork success Make fate finished

Commit Message

Andreas Rheinhardt Jan. 7, 2020, 1:55 p.m. UTC
It does nothing.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/mpjpeg.c | 6 ------
 1 file changed, 6 deletions(-)

Comments

Michael Niedermayer Jan. 8, 2020, 12:38 a.m. UTC | #1
On Tue, Jan 07, 2020 at 02:55:45PM +0100, Andreas Rheinhardt wrote:
> It does nothing.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
> ---
>  libavformat/mpjpeg.c | 6 ------
>  1 file changed, 6 deletions(-)

will apply

thx

[...]
diff mbox series

Patch

diff --git a/libavformat/mpjpeg.c b/libavformat/mpjpeg.c
index 80f83c5871..ebb3ac4b2a 100644
--- a/libavformat/mpjpeg.c
+++ b/libavformat/mpjpeg.c
@@ -50,11 +50,6 @@  static int mpjpeg_write_packet(AVFormatContext *s, AVPacket *pkt)
     return 0;
 }
 
-static int mpjpeg_write_trailer(AVFormatContext *s)
-{
-    return 0;
-}
-
 static const AVOption options[] = {
     { "boundary_tag",    "Boundary tag", offsetof(MPJPEGContext, boundary_tag),   AV_OPT_TYPE_STRING, {.str = BOUNDARY_TAG}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
     { NULL },
@@ -77,7 +72,6 @@  AVOutputFormat ff_mpjpeg_muxer = {
     .video_codec       = AV_CODEC_ID_MJPEG,
     .write_header      = mpjpeg_write_header,
     .write_packet      = mpjpeg_write_packet,
-    .write_trailer     = mpjpeg_write_trailer,
     .flags             = AVFMT_NOTIMESTAMPS,
     .priv_class        = &mpjpeg_muxer_class,
 };