Closed GoogleCodeExporter closed 9 years ago
Here's my initial implementation of the Log class, along with
MP4SetLogCallback.
Slightly different than the above. Here's the current enum and callback
signature:
typedef enum {
MP4LogNone = 0,
MP4LogError = 1,
MP4LogWarning = 2,
MP4LogInfo = 3,
MP4LogVerbose1 = 4,
MP4LogVerbose2 = 5,
MP4LogVerbose3 = 6,
MP4LogVerbose4 = 7
} MP4LogLevel;
typedef void (*log_message_cb_func_t)(
MP4LogLevel loglevel,
const char* fmt,
va_list ap );
-DB
Original comment by dbyr...@gmail.com
on 5 Feb 2009 at 9:04
Attachments:
One line change in the path to export MP4SetLogCallback. Still messing with
some
build settings...
-DB
Original comment by dbyr...@gmail.com
on 6 Feb 2009 at 2:02
Attachments:
- remove const from Log::printf, etc.
- log_message_cb_func_t --> MP4LogCallback
- add release notes announcing new function MP4SetLogCallback
- used C++-style comments in log.cpp
-DB
Original comment by dbyr...@gmail.com
on 10 Feb 2009 at 2:45
Attachments:
Committed to https://mp4v2.googlecode.com/svn/branches/logging. See that
branch for
more progress here.
Original comment by dbyr...@gmail.com
on 13 Feb 2009 at 9:08
Closing this since these changes (or similar ones) have made it into trunk.
Original comment by dbyr...@gmail.com
on 27 Mar 2011 at 2:31
Original issue reported on code.google.com by
dbyr...@gmail.com
on 2 Feb 2009 at 9:56