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
186273ab
Commit
186273ab
authored
Apr 03, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audioscrobbler: check video-es also in playingchange
some video seemed to go pass and sended to last.fm otherwise.
parent
5cf58966
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
modules/misc/audioscrobbler.c
modules/misc/audioscrobbler.c
+7
-3
No files found.
modules/misc/audioscrobbler.c
View file @
186273ab
...
...
@@ -464,6 +464,12 @@ static int PlayingChange( vlc_object_t *p_this, const char *psz_var,
if
(
newval
.
i_int
!=
INPUT_EVENT_STATE
)
return
VLC_SUCCESS
;
if
(
var_CountChoices
(
p_input
,
"video-es"
)
)
{
msg_Dbg
(
p_this
,
"Not an audio-only input, not submitting"
);
return
VLC_SUCCESS
;
}
state_value
.
i_int
=
0
;
var_Get
(
p_input
,
"state"
,
&
state_value
);
...
...
@@ -499,7 +505,6 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_data
;
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
input_item_t
*
p_item
;
vlc_value_t
video_val
;
VLC_UNUSED
(
p_this
);
VLC_UNUSED
(
psz_var
);
VLC_UNUSED
(
oldval
);
VLC_UNUSED
(
newval
);
...
...
@@ -520,8 +525,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
return
VLC_SUCCESS
;
}
var_Change
(
p_input
,
"video-es"
,
VLC_VAR_CHOICESCOUNT
,
&
video_val
,
NULL
);
if
(
video_val
.
i_int
>
0
)
if
(
var_CountChoices
(
p_input
,
"video-es"
)
)
{
msg_Dbg
(
p_this
,
"Not an audio-only input, not submitting"
);
vlc_object_release
(
p_input
);
...
...
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