[vlc-devel] commit: This was not supposed to be committed, sorry ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Jun 8 17:41:39 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Jun 8 18:43:26 2008 +0300| [c52079ad5b4c3b0f6382f226df319dfc8d7c2173]
This was not supposed to be committed, sorry
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c52079ad5b4c3b0f6382f226df319dfc8d7c2173
---
modules/demux/rtp.c | 11 ++---------
1 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/modules/demux/rtp.c b/modules/demux/rtp.c
index fb512ad..0194518 100644
--- a/modules/demux/rtp.c
+++ b/modules/demux/rtp.c
@@ -600,7 +600,7 @@ static void *ts_init (demux_t *demux)
* Dynamic payload type handlers
* Hmm, none implemented yet.
*/
-
+#if 0
/* PT=dynamic
* vorbis: Xiph Vorbis audio (draft-ietf-avt-rtp-vorbis-09, RFC FIXME)
*/
@@ -724,6 +724,7 @@ static void vorbis_decode (demux_t *demux, void *data, block_t *block)
drop:
block_Release (block);
}
+#endif
/**
* Processing callback
@@ -816,14 +817,6 @@ static int Demux (demux_t *demux)
pt.frequency = 90000;
break;
- case 96:
- msg_Dbg (demux, "detected Vorbis");
- pt.init = vorbis_init;
- pt.destroy = vorbis_destroy;
- pt.decode = vorbis_decode;
- pt.frequency = 4281000;
- break;
-
default:
goto drop;
}
More information about the vlc-devel
mailing list