Commit d272e598 authored by Pierre Ynard's avatar Pierre Ynard

t140: fix RTP synchronization

parent 2c1fd631
...@@ -1232,7 +1232,7 @@ static int rtp_packetize_t140( sout_stream_id_t *id, block_t *in ) ...@@ -1232,7 +1232,7 @@ static int rtp_packetize_t140( sout_stream_id_t *id, block_t *in )
memcpy( out->p_buffer + 12, p_data, i_payload ); memcpy( out->p_buffer + 12, p_data, i_payload );
out->i_buffer = 12 + i_payload; out->i_buffer = 12 + i_payload;
out->i_dts = out->i_pts; out->i_dts = in->i_pts;
out->i_length = 0; out->i_length = 0;
rtp_packetize_send( id, out ); rtp_packetize_send( id, out );
......
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