disabled most debugging output
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6617 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,7 +1,11 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "OpenDMLFile.h"
|
#include "OpenDMLFile.h"
|
||||||
|
|
||||||
#define TRACE printf
|
#if 0
|
||||||
|
#define TRACE printf
|
||||||
|
#else
|
||||||
|
#define TRACE(a...)
|
||||||
|
#endif
|
||||||
|
|
||||||
#define INDEX_CHUNK_SIZE 32768
|
#define INDEX_CHUNK_SIZE 32768
|
||||||
|
|
||||||
@@ -324,7 +328,7 @@ OpenDMLFile::AviGetNextChunkInfo(int stream_index, int64 *start, uint32 *size, b
|
|||||||
|
|
||||||
if (real_stream_index == stream_index) {
|
if (real_stream_index == stream_index) {
|
||||||
|
|
||||||
TRACE("OpenDMLFile::AviGetNextChunkInfo: stream %d, chunk_id "FOURCC_FORMAT" (0x%08x), flags 0x%x, offset %lu, length %lu\n",
|
TRACE("OpenDMLFile::AviGetNextChunkInfo: stream %d, chunk_id "FOURCC_FORMAT" (0x%08x), flags 0x%08x, offset %lu, length %lu\n",
|
||||||
stream_index, FOURCC_PARAM(entry->chunk_id), entry->chunk_id, entry->flags, entry->chunk_offset, entry->chunk_length);
|
stream_index, FOURCC_PARAM(entry->chunk_id), entry->chunk_id, entry->flags, entry->chunk_offset, entry->chunk_length);
|
||||||
|
|
||||||
*keyframe = entry->flags & AVIIF_KEYFRAME;
|
*keyframe = entry->flags & AVIIF_KEYFRAME;
|
||||||
|
|||||||
@@ -3,8 +3,7 @@
|
|||||||
#include "OpenDMLParser.h"
|
#include "OpenDMLParser.h"
|
||||||
#include "avi.h"
|
#include "avi.h"
|
||||||
|
|
||||||
#define TRACE_THIS 1
|
#if 1
|
||||||
#if TRACE_THIS
|
|
||||||
#define TRACE printf
|
#define TRACE printf
|
||||||
#else
|
#else
|
||||||
#define TRACE(a...)
|
#define TRACE(a...)
|
||||||
|
|||||||
Reference in New Issue
Block a user