Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
232fc4f7
Commit
232fc4f7
authored
Jan 01, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another fix.
parent
1d525b68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
plugins/mad_adec/mad_adec.c
plugins/mad_adec/mad_adec.c
+3
-3
No files found.
plugins/mad_adec/mad_adec.c
View file @
232fc4f7
...
...
@@ -61,7 +61,7 @@
static
int
decoder_Probe
(
probedata_t
*
);
static
int
decoder_Run
(
decoder_config_t
*
);
static
int
InitThread
(
mad_adec_thread_t
*
p_mad_adec
);
static
void
EndThread
(
mad_adec_thread_t
*
p_mad_adec
);
static
void
mad_adec_
EndThread
(
mad_adec_thread_t
*
p_mad_adec
);
/*****************************************************************************
* Capabilities
...
...
@@ -155,7 +155,7 @@ static int decoder_Run ( decoder_config_t * p_config )
{
intf_ErrMsg
(
"mad_adec error: libmad decoder returns abnormally"
);
DecoderError
(
p_mad_adec
->
p_fifo
);
EndThread
(
p_mad_adec
);
mad_adec_
EndThread
(
p_mad_adec
);
return
(
-
1
);
}
}
...
...
@@ -167,7 +167,7 @@ static int decoder_Run ( decoder_config_t * p_config )
}
/* End of the ac3 decoder thread */
EndThread
(
p_mad_adec
);
mad_adec_
EndThread
(
p_mad_adec
);
return
(
0
);
}
...
...
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