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
a5c73d38
Commit
a5c73d38
authored
May 26, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added filter_GetInputAttachments.
It allows to retreive input attachments.
parent
d378b866
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
include/vlc_filter.h
include/vlc_filter.h
+20
-0
No files found.
include/vlc_filter.h
View file @
a5c73d38
...
...
@@ -125,6 +125,11 @@ struct filter_t
#define pf_render_html u.render.pf_html
}
u
;
/* Input attachments
* XXX use filter_GetInputAttachments */
int
(
*
pf_get_attachments
)(
filter_t
*
,
input_attachment_t
***
,
int
*
);
/* Private structure for the owner of the decoder */
filter_owner_sys_t
*
p_owner
;
};
...
...
@@ -205,6 +210,21 @@ static inline block_t *filter_NewAudioBuffer( filter_t *p_filter, int i_size )
return
p_block
;
}
/**
* This function gives all input attachments at once.
*
* You MUST release the returned values
*/
static
inline
int
filter_GetInputAttachments
(
filter_t
*
p_filter
,
input_attachment_t
***
ppp_attachment
,
int
*
pi_attachment
)
{
if
(
!
p_filter
->
pf_get_attachments
)
return
VLC_EGENERIC
;
return
p_filter
->
pf_get_attachments
(
p_filter
,
ppp_attachment
,
pi_attachment
);
}
/**
* It creates a blend filter.
*
...
...
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