Commit 32bc486f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

RTP output: add audio/L24 (untested)

parent 07c0ff7b
......@@ -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";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment