Commit be3ac056 authored by Sébastien Escudier's avatar Sébastien Escudier Committed by Sébastien

live555 : fix regression from 31ac20b2

Closes #5707 #5493
(cherry picked from commit 9b0fc851)
parent 72270ed4
...@@ -1544,7 +1544,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -1544,7 +1544,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
case DEMUX_GET_PTS_DELAY: case DEMUX_GET_PTS_DELAY:
pi64 = (int64_t*)va_arg( args, int64_t * ); pi64 = (int64_t*)va_arg( args, int64_t * );
*pi64 = INT64_C(1000) *pi64 = INT64_C(1000)
* var_GetInteger( p_demux, "network-caching" ); * var_InheritInteger( p_demux, "network-caching" );
return VLC_SUCCESS; return VLC_SUCCESS;
default: default:
......
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