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
b875b0fd
Commit
b875b0fd
authored
Mar 08, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use mtrace() only with glibc
parent
a0b3d37e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/codec/xvmc/xxmc.c
modules/codec/xvmc/xxmc.c
+5
-1
No files found.
modules/codec/xvmc/xxmc.c
View file @
b875b0fd
...
...
@@ -35,7 +35,9 @@
#include <vlc_codec_synchro.h>
#include <unistd.h>
#include <mcheck.h>
#ifdef __GLIBC__
#include <mcheck.h>
#endif
#include "mpeg2.h"
#include "attributes.h"
...
...
@@ -117,7 +119,9 @@ static int OpenDecoder( vlc_object_t *p_this )
FILE
*
f_wd_dec
;
msg_Dbg
(
p_dec
,
"OpenDecoder Entering"
);
#ifdef __GLIBC__
mtrace
();
#endif
if
(
p_dec
->
fmt_in
.
i_codec
!=
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'v'
)
&&
p_dec
->
fmt_in
.
i_codec
!=
VLC_FOURCC
(
'm'
,
'p'
,
'g'
,
'1'
)
&&
/* Pinnacle hardware-mpeg1 */
...
...
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