[FFmpeg-cvslog] nutdec: Remove unused and broken debug function stub

Diego Biurrun git at videolan.org
Fri Sep 28 05:17:02 CEST 2012


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Sep 25 19:01:10 2012 +0200| [83655442fa6dbf7578d108ce479f98a14ebb3e3c] | committer: Diego Biurrun

nutdec: Remove unused and broken debug function stub

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=83655442fa6dbf7578d108ce479f98a14ebb3e3c
---

 libavformat/nutdec.c |   10 ----------
 1 file changed, 10 deletions(-)

diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 2013bc8..2d2c743 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,



More information about the ffmpeg-cvslog mailing list