From c3dad1bf3b5e04e01c291b1ac41e6bef0adf2206 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 6 Dec 2015 15:13:44 +0100 Subject: [PATCH] nsv: Drop unnecessary TRACE level debug code The output is rather silly and the code uses non-standard __FUNCTION__. --- libavformat/nsvdec.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 05d5f8b910..78e34d130f 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -227,8 +227,6 @@ static int nsv_resync(AVFormatContext *s) uint32_t v = 0; int i; - av_log(s, AV_LOG_TRACE, "%s(), offset = %"PRId64", state = %d\n", __FUNCTION__, avio_tell(pb), nsv->state); - for (i = 0; i < NSV_MAX_RESYNC; i++) { if (pb->eof_reached) { av_log(s, AV_LOG_TRACE, "NSV EOF\n"); @@ -274,8 +272,6 @@ static int nsv_parse_NSVf_header(AVFormatContext *s) int table_entries; int table_entries_used; - av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__); - nsv->state = NSV_UNSYNC; /* in case we fail */ size = avio_rl32(pb); @@ -381,7 +377,6 @@ static int nsv_parse_NSVs_header(AVFormatContext *s) int i; AVStream *st; NSVStream *nst; - av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__); vtag = avio_rl32(pb); atag = avio_rl32(pb); @@ -493,9 +488,6 @@ static int nsv_read_header(AVFormatContext *s) NSVContext *nsv = s->priv_data; int i, err; - av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__); - av_log(s, AV_LOG_TRACE, "filename '%s'\n", s->filename); - nsv->state = NSV_UNSYNC; nsv->ahead[0].data = nsv->ahead[1].data = NULL; @@ -537,8 +529,6 @@ static int nsv_read_chunk(AVFormatContext *s, int fill_header) uint16_t asize; uint16_t auxsize; - av_log(s, AV_LOG_TRACE, "%s(%d)\n", __FUNCTION__, fill_header); - if (nsv->ahead[0].data || nsv->ahead[1].data) return 0; //-1; /* hey! eat what you've in your plate first! */ @@ -658,8 +648,6 @@ static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt) NSVContext *nsv = s->priv_data; int i, err = 0; - av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__); - /* in case we don't already have something to eat ... */ if (!nsv->ahead[0].data && !nsv->ahead[1].data) err = nsv_read_chunk(s, 0); @@ -669,7 +657,6 @@ static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt) /* now pick one of the plates */ for (i = 0; i < 2; i++) { if (nsv->ahead[i].data) { - av_log(s, AV_LOG_TRACE, "%s: using cached packet[%d]\n", __FUNCTION__, i); /* avoid the cost of new_packet + memcpy(->data) */ memcpy(pkt, &nsv->ahead[i], sizeof(AVPacket)); nsv->ahead[i].data = NULL; /* we ate that one */