Commit a61500b2 authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/udp.c: use the "ts" demux when in rtp mode (and not "ts2").

* modules/mux/mp4.c: Warning fix patch by Zoltan Nagy.
parent 02164509
......@@ -423,7 +423,7 @@ static block_t *BlockChoose( access_t *p_access )
{
case 33:
msg_Dbg( p_access, "detected TS over RTP" );
p_access->psz_demux = strdup( "ts2" );
p_access->psz_demux = strdup( "ts" );
break;
case 14:
......
......@@ -742,7 +742,7 @@ static bo_t *GetESDS( mp4_stream_t *p_stream )
int i_stream_type;
int i_object_type_indication;
int i_decoder_specific_info_size;
int i;
unsigned int i;
int64_t i_bitrate_avg = 0;
int64_t i_bitrate_max = 0;
......
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