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
397701cc
Commit
397701cc
authored
Apr 04, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder: do not try to fetch attachments if there is no input
parent
7a1ce057
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/input/decoder.c
src/input/decoder.c
+5
-1
No files found.
src/input/decoder.c
View file @
397701cc
...
...
@@ -659,7 +659,11 @@ static int DecoderGetInputAttachments( decoder_t *p_dec,
input_attachment_t
***
ppp_attachment
,
int
*
pi_attachment
)
{
return
input_Control
(
p_dec
->
p_owner
->
p_input
,
INPUT_GET_ATTACHMENTS
,
input_thread_t
*
p_input
=
p_dec
->
p_owner
->
p_input
;
if
(
unlikely
(
p_input
==
NULL
)
)
return
VLC_ENOOBJ
;
return
input_Control
(
p_input
,
INPUT_GET_ATTACHMENTS
,
ppp_attachment
,
pi_attachment
);
}
static
mtime_t
DecoderGetDisplayDate
(
decoder_t
*
p_dec
,
mtime_t
i_ts
)
...
...
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