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
2791f26e
Commit
2791f26e
authored
Feb 14, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify vbi page change on key event to trigger vbi-page.
parent
d28af5a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
modules/codec/zvbi.c
modules/codec/zvbi.c
+11
-5
No files found.
modules/codec/zvbi.c
View file @
2791f26e
...
...
@@ -269,7 +269,7 @@ static int Open( vlc_object_t *p_this )
// var_AddCallback( p_dec, "vbi-text", Text, p_sys );
/* Listen for keys */
var_AddCallback
(
p_dec
->
p_libvlc
,
"key-pressed"
,
EventKey
,
p_
sys
);
var_AddCallback
(
p_dec
->
p_libvlc
,
"key-pressed"
,
EventKey
,
p_
dec
);
es_format_Init
(
&
p_dec
->
fmt_out
,
SPU_ES
,
VLC_FOURCC
(
's'
,
'p'
,
'u'
,
' '
)
);
if
(
p_sys
->
b_text
)
...
...
@@ -290,7 +290,7 @@ static void Close( vlc_object_t *p_this )
var_DelCallback
(
p_dec
,
"vbi-position"
,
Position
,
p_sys
);
var_DelCallback
(
p_dec
,
"vbi-opaque"
,
Opaque
,
p_sys
);
var_DelCallback
(
p_dec
,
"vbi-page"
,
RequestPage
,
p_sys
);
var_DelCallback
(
p_dec
->
p_libvlc
,
"key-pressed"
,
EventKey
,
p_
sys
);
var_DelCallback
(
p_dec
->
p_libvlc
,
"key-pressed"
,
EventKey
,
p_
dec
);
vlc_mutex_destroy
(
&
p_sys
->
lock
);
...
...
@@ -665,7 +665,9 @@ static int Position( vlc_object_t *p_this, char const *psz_cmd,
static
int
EventKey
(
vlc_object_t
*
p_this
,
char
const
*
psz_cmd
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
)
{
decoder_sys_t
*
p_sys
=
p_data
;
decoder_t
*
p_dec
=
p_data
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
VLC_UNUSED
(
psz_cmd
);
VLC_UNUSED
(
oldval
);
/* FIXME: Capture + and - key for subpage browsing */
...
...
@@ -698,15 +700,19 @@ static int EventKey( vlc_object_t *p_this, char const *psz_cmd,
p_sys
->
i_key
[
2
]
=
(
int
)(
newval
.
i_int
-
'0'
);
vout_OSDMessage
(
p_this
,
DEFAULT_CHAN
,
"%s: %c%c%c"
,
_
(
"Page"
),
(
char
)(
p_sys
->
i_key
[
0
]
+
'0'
),
(
char
)(
p_sys
->
i_key
[
1
]
+
'0'
),
(
char
)(
p_sys
->
i_key
[
2
]
+
'0'
)
);
int
i_new_page
=
0
;
if
(
p_sys
->
i_key
[
0
]
>
0
&&
p_sys
->
i_key
[
0
]
<=
8
&&
p_sys
->
i_key
[
1
]
>=
0
&&
p_sys
->
i_key
[
1
]
<=
9
&&
p_sys
->
i_key
[
2
]
>=
0
&&
p_sys
->
i_key
[
2
]
<=
9
)
{
p_sys
->
i_wanted_page
=
p_sys
->
i_key
[
0
]
*
100
+
p_sys
->
i_key
[
1
]
*
10
+
p_sys
->
i_key
[
2
];
p_sys
->
i_wanted_subpage
=
VBI_ANY_SUBNO
;
i_new_page
=
p_sys
->
i_key
[
0
]
*
100
+
p_sys
->
i_key
[
1
]
*
10
+
p_sys
->
i_key
[
2
];
p_sys
->
i_key
[
0
]
=
p_sys
->
i_key
[
1
]
=
p_sys
->
i_key
[
2
]
=
'*'
-
'0'
;
}
vlc_mutex_unlock
(
&
p_sys
->
lock
);
if
(
i_new_page
>
0
)
var_SetInteger
(
p_dec
,
"vbi-page"
,
i_new_page
);
return
VLC_SUCCESS
;
}
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