731702fa11
To better clarify which version this packages. VideoLAN is a project of French students from the Ecole Centrale Paris and developers from all over the world. Its main goals is MPEG streaming on a network, but it also features a standalone multimedia player. The VideoLAN Server can stream video read from a hard disk, a DVD player, a satellite card or an MPEG 2 compression card, and unicast or multicast it on a network. The VideoLAN Client can read the stream from the network and display it. It can also be used to display video read locally on the computer : DVDs, VCDs, MPEG and DivX files and from a satellite card. It is multi-plaform : Linux, Windows, Mac OS X, BeOS, BSD, Solaris, QNX, iPaq... The VideoLAN Client and Server now have a full IPv6 support. This version is the last version with support for OSSv3, which is the OSS version implemented in NetBSD before NetBSD 7.
31 lines
1,017 B
Text
31 lines
1,017 B
Text
$NetBSD: patch-ac,v 1.1 2015/10/25 10:52:24 wiz Exp $
|
|
|
|
--- modules/gui/qt4/components/extended_panels.cpp.orig 2012-04-27 17:14:57.000000000 +0000
|
|
+++ modules/gui/qt4/components/extended_panels.cpp
|
|
@@ -1621,7 +1621,7 @@ void SyncControls::update()
|
|
{
|
|
b_userAction = false;
|
|
|
|
- int64_t i_delay;
|
|
+ putime_t i_delay;
|
|
if( THEMIM->getInput() )
|
|
{
|
|
i_delay = var_GetTime( THEMIM->getInput(), "audio-delay" );
|
|
@@ -1638,7 +1638,7 @@ void SyncControls::advanceAudio( double
|
|
{
|
|
if( THEMIM->getInput() && b_userAction )
|
|
{
|
|
- int64_t i_delay = f_advance * 1000000;
|
|
+ putime_t i_delay = f_advance * 1000000;
|
|
var_SetTime( THEMIM->getInput(), "audio-delay", i_delay );
|
|
}
|
|
}
|
|
@@ -1647,7 +1647,7 @@ void SyncControls::advanceSubs( double f
|
|
{
|
|
if( THEMIM->getInput() && b_userAction )
|
|
{
|
|
- int64_t i_delay = f_advance * 1000000;
|
|
+ putime_t i_delay = f_advance * 1000000;
|
|
var_SetTime( THEMIM->getInput(), "spu-delay", i_delay );
|
|
}
|
|
}
|