Changeset 3760ad3478241bc18fec978b9af1ea4c12c77600

Show
Ignore:
Timestamp:
19/11/05 08:57:08 (3 years ago)
Author:
Marian Durkovic <md@videolan.org>
git-committer:
Marian Durkovic <md@videolan.org> 1132387028 +0000
git-parent:

[e8f15ad9a2bf80226901653b118416b7bdf2c7f5]

git-author:
Marian Durkovic <md@videolan.org> 1132387028 +0000
Message:

don't perform prebuffering for UDP, since it causes refclock fluctuation
as large as +/- 25 msec and too frequent audio up/down sampling

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/udp.c

    r8ee331b r3760ad3  
    565565        msg_Dbg( p_access, "detected TS over raw UDP" ); 
    566566        p_access->pf_block = BlockUDP; 
     567        p_access->info.b_prebuffered = VLC_TRUE; 
    567568        return p_block; 
    568569    } 
     
    582583        msg_Dbg( p_access, "no supported RTP header detected" ); 
    583584        p_access->pf_block = BlockUDP; 
     585        p_access->info.b_prebuffered = VLC_TRUE; 
    584586        return p_block; 
    585587    } 
     
    605607            msg_Dbg( p_access, "no RTP header detected" ); 
    606608            p_access->pf_block = BlockUDP; 
     609            p_access->info.b_prebuffered = VLC_TRUE; 
    607610            return p_block; 
    608611    }