Commit 82e06936 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

RTP: align MTU correctly for L24 (fixes #10269)

parent ffd82479
...@@ -1155,6 +1155,9 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt ) ...@@ -1155,6 +1155,9 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
case VLC_CODEC_S16L: case VLC_CODEC_S16L:
rtp_set_ptime (id, 20, 2); rtp_set_ptime (id, 20, 2);
break; break;
case VLC_CODEC_S24B:
rtp_set_ptime (id, 20, 3);
break;
default: default:
break; break;
} }
......
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