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/rtp.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/rtp.c')
-rw-r--r-- | libavformat/rtp.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c index c9bc3d80b8..da1d942868 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -1055,12 +1055,6 @@ static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) return 0; } -static int rtp_write_trailer(AVFormatContext *s1) -{ - // RTPDemuxContext *s = s1->priv_data; - return 0; -} - AVOutputFormat rtp_muxer = { "rtp", "RTP output format", @@ -1071,5 +1065,4 @@ AVOutputFormat rtp_muxer = { CODEC_ID_NONE, rtp_write_header, rtp_write_packet, - rtp_write_trailer, }; |