[vlc-commits] commit: RTP output: add audio/L24 (untested) (	=?UTF-8?Q?R=C3=A9mi=20Denis=2DCourmont=20?=)
    git at videolan.org 
    git at videolan.org
       
    Tue Jan  4 23:23:39 CET 2011
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Jan  5 00:23:05 2011 +0200| [32bc486f26a83ef383aabb0f80caf3e1334c7d5c] | committer: Rémi Denis-Courmont 
RTP output: add audio/L24 (untested)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=32bc486f26a83ef383aabb0f80caf3e1334c7d5c
---
 modules/stream_out/rtpfmt.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/modules/stream_out/rtpfmt.c b/modules/stream_out/rtpfmt.c
index 05417ba..68dea4b 100644
--- a/modules/stream_out/rtpfmt.c
+++ b/modules/stream_out/rtpfmt.c
@@ -238,6 +238,10 @@ int rtp_get_fmt( vlc_object_t *obj, es_format_t *p_fmt, const char *mux,
             rtp_fmt->ptname = "L8";
             rtp_fmt->pf_packetize = rtp_packetize_split;
             break;
+        case VLC_CODEC_S24B:
+            rtp_fmt->ptname = "L24";
+            rtp_fmt->pf_packetize = rtp_packetize_split;
+            break;
         case VLC_CODEC_MPGA:
             rtp_fmt->payload_type = 14;
             rtp_fmt->ptname = "MPA";
    
    
More information about the vlc-commits
mailing list