Commit b875b0fd authored by Rafaël Carré's avatar Rafaël Carré

use mtrace() only with glibc

parent a0b3d37e
...@@ -35,7 +35,9 @@ ...@@ -35,7 +35,9 @@
#include <vlc_codec_synchro.h> #include <vlc_codec_synchro.h>
#include <unistd.h> #include <unistd.h>
#include <mcheck.h> #ifdef __GLIBC__
#include <mcheck.h>
#endif
#include "mpeg2.h" #include "mpeg2.h"
#include "attributes.h" #include "attributes.h"
...@@ -117,7 +119,9 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -117,7 +119,9 @@ static int OpenDecoder( vlc_object_t *p_this )
FILE *f_wd_dec; FILE *f_wd_dec;
msg_Dbg(p_dec, "OpenDecoder Entering"); msg_Dbg(p_dec, "OpenDecoder Entering");
#ifdef __GLIBC__
mtrace(); mtrace();
#endif
if( p_dec->fmt_in.i_codec != VLC_FOURCC('m','p','g','v') && 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') && p_dec->fmt_in.i_codec != VLC_FOURCC('m','p','g','1') &&
/* Pinnacle hardware-mpeg1 */ /* Pinnacle hardware-mpeg1 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment