Lines Matching refs:TRACE

15   #define TRACE printf
17 #define TRACE ((void)0)
24 TRACE("\n\n");
26 TRACE("main: creating plugin...\n");
30 TRACE("main: creating reader...\n");
37 TRACE("main: opening source file...\n");
45 TRACE("main: calling setup...\n");
49 TRACE("main: creating ...\n");
51 TRACE("main: copyright: \"%s\"\n", reader->Copyright());
58 TRACE("main: Sniff() failed with error %lx (%s)\n", s, strerror(s));
62 TRACE("main: Sniff() found %ld streams\n", streamCount);
66 TRACE("main: calling AllocateCookie(stream = %d)\n", i);
69 TRACE("main: AllocateCookie(stream = %d) failed with error %lx (%s)\n", i, s, strerror(s));
75 TRACE("main: calling GetStreamInfo(stream = %d)\n", i);
83 TRACE("main: GetStreamInfo(stream = %d) failed with error %lx (%s)\n", i, s, strerror(s));
86 TRACE("main: GetStreamInfo(stream = %d) result: %lld frames, %.6f sec\n", i, frameCount, duration / 1000000.0);
96 TRACE("main: GetNextChunk(stream = %d, chunk = %d) failed with error %lx (%s)\n", i, j, s, strerror(s));
105 TRACE("main: calling Seek(stream = %d, time %.6f forward)\n", i, time / 1000000.0);
107 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
110 TRACE("main: calling Seek(stream = %d, frame %lld forward)\n", i, frame);
112 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
115 TRACE("main: calling Seek(stream = %d, time %.6f backward)\n", i, time / 1000000.0);
117 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
120 TRACE("main: calling Seek(stream = %d, frame %lld backward)\n", i, frame);
122 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
126 TRACE("main: calling FreeCookie(stream = %d)\n", i);
129 TRACE("main: FreeCookie(stream = %d) failed with error %lx (%s)\n", i, s, strerror(s));