diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-06-27 06:54:47 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-27 06:54:47 +0000 |
commit | 7cf099952989b3260794b284b53af7423f2b5b79 (patch) | |
tree | 764642097c8788c46239704279f5c0a7269ae2b4 /libavformat/yuv4mpeg.c | |
parent | 4513cd48ee1671d73404e814913f2b8aae97c9ae (diff) | |
download | ffmpeg-7cf099952989b3260794b284b53af7423f2b5b79.tar.gz |
remove empty write trailer functions
patch by Vitor: [vitor1001 gmail com]
Originally committed as revision 9442 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/yuv4mpeg.c')
-rw-r--r-- | libavformat/yuv4mpeg.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/yuv4mpeg.c b/libavformat/yuv4mpeg.c index a0a6ba3457..da0a8a19ea 100644 --- a/libavformat/yuv4mpeg.c +++ b/libavformat/yuv4mpeg.c @@ -166,11 +166,6 @@ static int yuv4_write_header(AVFormatContext *s) return 0; } -static int yuv4_write_trailer(AVFormatContext *s) -{ - return 0; -} - #ifdef CONFIG_YUV4MPEGPIPE_MUXER AVOutputFormat yuv4mpegpipe_muxer = { "yuv4mpegpipe", @@ -182,7 +177,6 @@ AVOutputFormat yuv4mpegpipe_muxer = { CODEC_ID_RAWVIDEO, yuv4_write_header, yuv4_write_packet, - yuv4_write_trailer, .flags = AVFMT_RAWPICTURE, }; #endif |