diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-25 19:01:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-09-27 12:02:33 +0200 |
commit | 83655442fa6dbf7578d108ce479f98a14ebb3e3c (patch) | |
tree | 623efda709a88a6ec49df3f94e91964e59be7340 /libavformat/nutdec.c | |
parent | 0ae3ba8daaab9b6b2679225f5d08046ffbcd6250 (diff) | |
download | ffmpeg-83655442fa6dbf7578d108ce479f98a14ebb3e3c.tar.gz |
nutdec: Remove unused and broken debug function stub
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 2013bc83b4..2d2c7430af 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -96,18 +96,8 @@ static inline int64_t get_s_trace(AVIOContext *bc, const char *file, return v; } -static inline uint64_t get_vb_trace(AVIOContext *bc, char *file, - char *func, int line) -{ - uint64_t v = get_vb(bc); - - av_log(NULL, AV_LOG_DEBUG, "get_vb %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__) -#define get_vb(bc) get_vb_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) #endif static int get_packetheader(NUTContext *nut, AVIOContext *bc, |