diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-24 13:19:10 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-24 13:19:10 +0100 |
commit | 50a06c841f05f8441f1a805f96059ba433108d85 (patch) | |
tree | 49a3ec0ba056fba7afffc885f801cbae15e99aac /libavformat | |
parent | e809c2e40d7a75d706dd1d74fd640b0bc0909863 (diff) | |
parent | c3dad1bf3b5e04e01c291b1ac41e6bef0adf2206 (diff) | |
download | ffmpeg-50a06c841f05f8441f1a805f96059ba433108d85.tar.gz |
Merge commit 'c3dad1bf3b5e04e01c291b1ac41e6bef0adf2206'
* commit 'c3dad1bf3b5e04e01c291b1ac41e6bef0adf2206':
nsv: Drop unnecessary TRACE level debug code
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nsvdec.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 89e4c17c5f..eb0cf1b1b5 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -226,8 +226,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 (avio_feof(pb)) { av_log(s, AV_LOG_TRACE, "NSV EOF\n"); @@ -273,8 +271,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); @@ -380,7 +376,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); @@ -492,9 +487,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 auxsize; int ret; - 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! */ @@ -660,8 +650,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); @@ -671,7 +659,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 */ |