Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8bfce149
Commit
8bfce149
authored
Jul 08, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fingerprinter: remove fingerprinter_sys_t.i
parent
473e0677
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
modules/misc/fingerprinter.c
modules/misc/fingerprinter.c
+2
-6
No files found.
modules/misc/fingerprinter.c
View file @
8bfce149
...
@@ -54,9 +54,6 @@ struct fingerprinter_sys_t
...
@@ -54,9 +54,6 @@ struct fingerprinter_sys_t
{
{
vlc_array_t
*
queue
;
vlc_array_t
*
queue
;
}
processing
;
}
processing
;
/* clobberable by cleanups */
int
i
;
};
};
static
int
Open
(
vlc_object_t
*
);
static
int
Open
(
vlc_object_t
*
);
...
@@ -287,11 +284,10 @@ static void *Run( void *opaque )
...
@@ -287,11 +284,10 @@ static void *Run( void *opaque )
QueueIncomingRequests
(
p_sys
);
QueueIncomingRequests
(
p_sys
);
for
(
p_sys
->
i
=
0
;
p_sys
->
i
<
vlc_array_count
(
p_sys
->
processing
.
queue
);
p_sys
->
i
++
)
for
(
int
i
=
0
;
i
<
vlc_array_count
(
p_sys
->
processing
.
queue
);
i
++
)
{
{
fingerprint_request_t
*
p_data
=
vlc_array_item_at_index
(
p_sys
->
processing
.
queue
,
p_sys
->
i
);
int
canc
=
vlc_savecancel
();
int
canc
=
vlc_savecancel
();
fingerprint_request_t
*
p_data
=
vlc_array_item_at_index
(
p_sys
->
processing
.
queue
,
i
);
char
*
psz_uri
=
input_item_GetURI
(
p_data
->
p_item
);
char
*
psz_uri
=
input_item_GetURI
(
p_data
->
p_item
);
if
(
psz_uri
!=
NULL
)
if
(
psz_uri
!=
NULL
)
...
...
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