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-06 17:13:44 +0300
committerDiego Biurrun <diego@biurrun.de>2016-10-27 13:21:46 +0300
commitc3dad1bf3b5e04e01c291b1ac41e6bef0adf2206 (patch)
tree6c054ccc7f7e5ad629b53ef853f8a44d3e2608de /libavformat/nsvdec.c
parent47756f51fe836959ffa5c6e2baeacbd71e150069 (diff)
nsv: Drop unnecessary TRACE level debug code
The output is rather silly and the code uses non-standard __FUNCTION__.
Diffstat (limited to 'libavformat/nsvdec.c')
-rw-r--r--libavformat/nsvdec.c13
1 files changed, 0 insertions, 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 */