diff rtp.c @ 2210:dbcfc6a4c016 libavformat

remove empty write trailer functions patch by Vitor: [vitor1001 gmail com]
author benoit
date Wed, 27 Jun 2007 06:54:47 +0000
parents c4244900f986
children 3427d0c63a32
line wrap: on
line diff
--- a/rtp.c	Tue Jun 26 23:08:39 2007 +0000
+++ b/rtp.c	Wed Jun 27 06:54:47 2007 +0000
@@ -1055,12 +1055,6 @@
     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 @@
     CODEC_ID_NONE,
     rtp_write_header,
     rtp_write_packet,
-    rtp_write_trailer,
 };