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
341af7ae
Commit
341af7ae
authored
Nov 10, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Make access_filter dump compile on 0.8.6
parent
66218340
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/access_filter/dump.c
modules/access_filter/dump.c
+3
-3
No files found.
modules/access_filter/dump.c
View file @
341af7ae
...
...
@@ -119,7 +119,7 @@ static int Open (vlc_object_t *obj)
}
p_sys
->
tmp_max
=
((
int64_t
)
var_CreateGetInteger
(
access
,
"dump-margin"
))
<<
20
;
var_AddCallback
(
access
->
p_
lib
vlc
,
"key-pressed"
,
KeyHandler
,
access
);
var_AddCallback
(
access
->
p_vlc
,
"key-pressed"
,
KeyHandler
,
access
);
return
VLC_SUCCESS
;
}
...
...
@@ -133,7 +133,7 @@ static void Close (vlc_object_t *obj)
access_t
*
access
=
(
access_t
*
)
obj
;
access_sys_t
*
p_sys
=
access
->
p_sys
;
var_DelCallback
(
access
->
p_
lib
vlc
,
"key-pressed"
,
KeyHandler
,
access
);
var_DelCallback
(
access
->
p_vlc
,
"key-pressed"
,
KeyHandler
,
access
);
if
(
p_sys
->
stream
!=
NULL
)
fclose
(
p_sys
->
stream
);
...
...
@@ -348,7 +348,7 @@ static int KeyHandler (vlc_object_t *obj, char const *varname,
(
void
)
oldval
;
(
void
)
obj
;
for
(
key
=
access
->
p_
lib
vlc
->
p_hotkeys
;
key
->
psz_action
!=
NULL
;
key
++
)
for
(
key
=
access
->
p_vlc
->
p_hotkeys
;
key
->
psz_action
!=
NULL
;
key
++
)
{
if
(
key
->
i_key
==
newval
.
i_int
)
{
...
...
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