Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
edd9673a
Commit
edd9673a
authored
Jan 07, 2010
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meta reader: Add the input_item that we are reading in the structure.
parent
a36325f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
include/vlc_demux.h
include/vlc_demux.h
+2
-0
src/input/input.c
src/input/input.c
+1
-0
No files found.
include/vlc_demux.h
View file @
edd9673a
...
@@ -82,6 +82,8 @@ typedef struct demux_meta_t
...
@@ -82,6 +82,8 @@ typedef struct demux_meta_t
{
{
VLC_COMMON_MEMBERS
VLC_COMMON_MEMBERS
demux_t
*
p_demux
;
/** FIXME: use stream_t instead? */
demux_t
*
p_demux
;
/** FIXME: use stream_t instead? */
input_item_t
*
p_item
;
/***< the input item that is being read */
vlc_meta_t
*
p_meta
;
/**< meta data */
vlc_meta_t
*
p_meta
;
/**< meta data */
int
i_attachments
;
/**< number of attachments */
int
i_attachments
;
/**< number of attachments */
...
...
src/input/input.c
View file @
edd9673a
...
@@ -2767,6 +2767,7 @@ static void InputSourceMeta( input_thread_t *p_input,
...
@@ -2767,6 +2767,7 @@ static void InputSourceMeta( input_thread_t *p_input,
if
(
!
p_demux_meta
)
if
(
!
p_demux_meta
)
return
;
return
;
p_demux_meta
->
p_demux
=
p_demux
;
p_demux_meta
->
p_demux
=
p_demux
;
p_demux_meta
->
p_item
=
p_input
->
p
->
p_item
;
module_t
*
p_id3
=
module_need
(
p_demux_meta
,
"meta reader"
,
NULL
,
false
);
module_t
*
p_id3
=
module_need
(
p_demux_meta
,
"meta reader"
,
NULL
,
false
);
if
(
p_id3
)
if
(
p_id3
)
...
...
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