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/amr.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/amr.c')
-rw-r--r-- | libavformat/amr.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/amr.c b/libavformat/amr.c index 98fd35a08c..92223ed720 100644 --- a/libavformat/amr.c +++ b/libavformat/amr.c @@ -60,11 +60,6 @@ static int amr_write_packet(AVFormatContext *s, AVPacket *pkt) put_flush_packet(&s->pb); return 0; } - -static int amr_write_trailer(AVFormatContext *s) -{ - return 0; -} #endif /* CONFIG_MUXERS */ static int amr_probe(AVProbeData *p) @@ -194,6 +189,5 @@ AVOutputFormat amr_muxer = { CODEC_ID_NONE, amr_write_header, amr_write_packet, - amr_write_trailer, }; #endif |