summaryrefslogtreecommitdiff
path: root/libavformat/img2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/img2.c')
-rw-r--r--libavformat/img2.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c
index 6e846df66f..68fcbc4536 100644
--- a/libavformat/img2.c
+++ b/libavformat/img2.c
@@ -373,11 +373,6 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
return 0;
}
-static int img_write_trailer(AVFormatContext *s)
-{
- return 0;
-}
-
#endif /* CONFIG_MUXERS */
/* input */
@@ -420,7 +415,7 @@ AVOutputFormat image2_muxer = {
CODEC_ID_MJPEG,
img_write_header,
img_write_packet,
- img_write_trailer,
+ NULL,
AVFMT_NOFILE,
};
#endif
@@ -435,6 +430,6 @@ AVOutputFormat image2pipe_muxer = {
CODEC_ID_MJPEG,
img_write_header,
img_write_packet,
- img_write_trailer,
+ NULL,
};
#endif