Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
5aded14b
Commit
5aded14b
authored
Oct 01, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: typo, fix #1204
parent
5183b07c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
48 additions
and
20 deletions
+48
-20
configure.ac
configure.ac
+1
-1
extras/mpris.py
extras/mpris.py
+22
-7
modules/control/dbus.c
modules/control/dbus.c
+3
-3
modules/control/rc.c
modules/control/rc.c
+19
-8
modules/misc/notify/notify.c
modules/misc/notify/notify.c
+1
-1
src/network/io.c
src/network/io.c
+2
-0
No files found.
configure.ac
View file @
5aded14b
...
...
@@ -1508,7 +1508,7 @@ AS_IF([test "${CFLAGS_TUNING}"],
dnl
dnl x86 accelerations
dnl
if test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "x86" -o "${host_cpu}" = "i386" -o "${host_cpu}"
=
"i486" -o "${host_cpu}" = "x86_64"
if test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "x86" -o "${host_cpu}" = "i386" -o "${host_cpu}"
=
"i486" -o "${host_cpu}" = "x86_64"
then
ARCH="${ARCH} mmx"
VLC_ADD_PLUGINS([${ACCEL_MODULES}])
...
...
extras/mpris.py
View file @
5aded14b
...
...
@@ -182,21 +182,33 @@ def Loop(widget):
# update status display
def
update
(
widget
):
item
=
tracklist
.
GetMetadata
(
tracklist
.
GetCurrentTrack
()
)
Track
=
player
.
GetMetadata
(
)
vol
.
set_value
(
player
.
VolumeGet
())
try
:
a
=
item
[
"artist"
]
except
:
a
=
""
a
=
Track
[
"artist"
]
except
:
a
=
""
try
:
t
=
item
[
"title"
]
except
:
t
=
""
t
=
Track
[
"title"
]
except
:
t
=
""
if
t
==
""
:
try
:
t
=
item
[
"URI"
]
t
=
Track
[
"URI"
]
except
:
t
=
""
l_artist
.
set_text
(
a
)
l_title
.
set_text
(
t
)
try
:
length
=
Track
[
"length"
]
except
:
length
=
0
if
length
>
0
:
time_s
.
set_range
(
0
,
Track
[
"length"
])
time_s
.
set_sensitive
(
True
)
else
:
# disable the position scale if length isn't available
time_s
.
set_sensitive
(
False
)
GetPlayStatus
(
0
)
# callback for volume change
...
...
@@ -211,7 +223,10 @@ def timechange(widget, x=None, y=None):
def
timeset
():
global
playing
if
playing
==
True
:
time_s
.
set_value
(
player
.
PositionGet
())
try
:
time_s
.
set_value
(
player
.
PositionGet
())
except
:
playing
=
False
return
True
# toggle simple/full display
...
...
modules/control/dbus.c
View file @
5aded14b
...
...
@@ -526,12 +526,12 @@ DBUS_METHOD( Random )
dbus_bool_t
b_random
;
vlc_value_t
val
;
playlist_t
*
p_playlist
=
NULL
;
dbus_error_init
(
&
error
);
dbus_message_get_args
(
p_from
,
&
error
,
DBUS_TYPE_BOOLEAN
,
&
b_random
,
DBUS_TYPE_INVALID
);
if
(
dbus_error_is_set
(
&
error
)
)
{
msg_Err
(
(
vlc_object_t
*
)
p_this
,
"D-Bus message reading : %s
\n
"
,
...
...
@@ -541,7 +541,7 @@ DBUS_METHOD( Random )
}
val
.
b_bool
=
(
b_random
==
TRUE
)
?
VLC_TRUE
:
VLC_FALSE
;
p_playlist
=
pl_Yield
(
(
vlc_object_t
*
)
p_this
);
var_Set
(
p_playlist
,
"random"
,
val
);
pl_Release
(
((
vlc_object_t
*
)
p_this
)
);
...
...
modules/control/rc.c
View file @
5aded14b
/*****************************************************************************
* rc.c : remote control stdin/stdout module for vlc
*****************************************************************************
* Copyright (C) 2004
- 2005
the VideoLAN team
* Copyright (C) 2004
-2007
the VideoLAN team
* $Id$
*
* Author: Peter Surda <shurdeek@panorama.sth.ac.at>
...
...
@@ -1941,15 +1941,26 @@ vlc_bool_t ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size )
}
#endif
while
(
!
intf_ShouldDie
(
p_intf
)
&&
*
pi_size
<
MAX_LINE_LENGTH
&&
(
i_read
=
net_Read
(
p_intf
,
p_intf
->
p_sys
->
i_socket
==
-
1
?
0
/*STDIN_FILENO*/
:
p_intf
->
p_sys
->
i_socket
,
NULL
,
(
uint8_t
*
)
p_buffer
+
*
pi_size
,
1
,
VLC_FALSE
)
)
>
0
)
int
i_socket
=
p_intf
->
p_sys
->
i_socket
==
-
1
?
0
:
p_intf
->
p_sys
->
i_socket
;
/* 0 == STDIN_FILENO */
while
(
!
intf_ShouldDie
(
p_intf
)
&&
*
pi_size
<
MAX_LINE_LENGTH
)
{
if
(
p_buffer
[
*
pi_size
]
==
'\r'
||
p_buffer
[
*
pi_size
]
==
'\n'
)
break
;
i_read
=
net_Read
(
p_intf
,
i_socket
,
NULL
,
(
uint8_t
*
)
p_buffer
+
*
pi_size
,
1
,
VLC_FALSE
);
if
(
i_read
>
0
)
{
if
(
p_buffer
[
*
pi_size
]
==
'\r'
||
p_buffer
[
*
pi_size
]
==
'\n'
)
break
;
(
*
pi_size
)
++
;
(
*
pi_size
)
++
;
}
else
if
(
i_read
==
0
)
break
;
else
if
(
errno
!=
EINTR
)
/* we try again if a system call was interrupted */
break
;
}
/* Connection closed */
...
...
modules/misc/notify/notify.c
View file @
5aded14b
/*****************************************************************************
* notify.c : libnotify notification plugin
*****************************************************************************
* Copyright (C) 2006 the VideoLAN team
* Copyright (C) 2006
-2007
the VideoLAN team
* $Id$
*
* Authors: Christophe Mutricy <xtophe -at- videolan -dot- org>
...
...
src/network/io.c
View file @
5aded14b
...
...
@@ -267,6 +267,8 @@ net_ReadInner (vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
#if defined(WIN32) || defined(UNDER_CE)
WSASetLastError
(
WSAEINTR
);
#else
if
(
p_this
->
b_die
)
printf
(
"b_die
\n
"
);
else
printf
(
"p_libvlc->b_die
\n
"
);
errno
=
EINTR
;
#endif
goto
error
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment