Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-12-11 20:58:12 +0300
committerDiego Biurrun <diego@biurrun.de>2016-10-27 13:54:07 +0300
commit07eea5a5ded1141632aefecfa59dcdc26de2d7ea (patch)
tree5e5ebe2311ba09a6eeb68292d9c12d5dcda1e0ec /libavformat/nutdec.c
parentc3dad1bf3b5e04e01c291b1ac41e6bef0adf2206 (diff)
nut: Drop pointless TRACE level debug code
The code has little usefulness and uses the __PRETTY_FUNCTION__ GNU extension.
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r--libavformat/nutdec.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index e1a9f6db0f..25076631bf 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -76,36 +76,10 @@ static uint64_t get_fourcc(AVIOContext *bc)
return -1;
}
-#ifdef TRACE
-static inline uint64_t get_v_trace(AVIOContext *bc, const char *file,
- const char *func, int line)
-{
- uint64_t v = ffio_read_varlen(bc);
-
- av_log(NULL, AV_LOG_DEBUG, "get_v %5"PRId64" / %"PRIX64" in %s %s:%d\n",
- v, v, file, func, line);
- return v;
-}
-
-static inline int64_t get_s_trace(AVIOContext *bc, const char *file,
- const char *func, int line)
-{
- int64_t v = get_s(bc);
-
- av_log(NULL, AV_LOG_DEBUG, "get_s %5"PRId64" / %"PRIX64" in %s %s:%d\n",
- v, v, file, func, line);
- return v;
-}
-
-#define ffio_read_varlen(bc) get_v_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__)
-#define get_s(bc) get_s_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__)
-#endif
-
static int get_packetheader(NUTContext *nut, AVIOContext *bc,
int calculate_checksum, uint64_t startcode)
{
int64_t size;
-// start = avio_tell(bc) - 8;
startcode = av_be2ne64(startcode);
startcode = ff_crc04C11DB7_update(0, (uint8_t*) &startcode, 8);