Hi, On Donnerstag, 11. Juni 2009, Aurelien Jacobs wrote: > On Thu, Jun 11, 2009 at 04:09:36PM +0200, faust3 wrote: > > Author: faust3 > > Date: Thu Jun 11 16:09:36 2009 > > New Revision: 4422 > > > > Log: > > do not compile in bitstream debugging code > > > > Modified: > > wmapro/wma3dec.c > > > > Modified: wmapro/wma3dec.c > > ========================================================================= > >===== --- wmapro/wma3dec.c Thu Jun 11 15:15:07 2009 (r4421) > > +++ wmapro/wma3dec.c Thu Jun 11 16:09:36 2009 (r4422) > > @@ -95,6 +95,12 @@ static VLC vec1_vlc; > > static VLC coef_vlc[2]; ///< coefficient run length > > vlc codes static float sin64[33]; ///< sinus table for > > decorrelation > > > > +#ifdef TRACE > > +#define DBG av_log > > +#else > > +#define DBG(...) > > +#endif > > DBG() seems to just be a duplication of dprintf()... >
Thanks for the hint. I changed the code to use dprintf. Regards Sascha _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
