summaryrefslogtreecommitdiff
path: root/libavformat/oggdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-06-02 20:40:09 +0200
committerDiego Biurrun <diego@biurrun.de>2011-06-02 23:11:58 +0200
commitb751f611065f1fe1d7216971c4b100c928a3b0d5 (patch)
tree55849482bfe65164d59ff9f0af51dedb3cf17f3f /libavformat/oggdec.c
parent551dfdde70f912d0278730b28d480e32a49b1b5e (diff)
Remove stray extra arguments from av_dlog() invocations.
Diffstat (limited to 'libavformat/oggdec.c')
-rw-r--r--libavformat/oggdec.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c
index 9562ea9ec0..f1ad630c5e 100644
--- a/libavformat/oggdec.c
+++ b/libavformat/oggdec.c
@@ -310,7 +310,7 @@ static int ogg_packet(AVFormatContext *s, int *str, int *dstart, int *dsize,
int complete = 0;
int segp = 0, psize = 0;
- av_dlog(s, AV_LOG_DEBUG, "ogg_packet: curidx=%i\n", ogg->curidx);
+ av_dlog(s, "ogg_packet: curidx=%i\n", ogg->curidx);
do{
idx = ogg->curidx;
@@ -322,8 +322,7 @@ static int ogg_packet(AVFormatContext *s, int *str, int *dstart, int *dsize,
os = ogg->streams + idx;
- av_dlog(s, AV_LOG_DEBUG,
- "ogg_packet: idx=%d pstart=%d psize=%d segp=%d nsegs=%d\n",
+ av_dlog(s, "ogg_packet: idx=%d pstart=%d psize=%d segp=%d nsegs=%d\n",
idx, os->pstart, os->psize, os->segp, os->nsegs);
if (!os->codec){
@@ -356,8 +355,7 @@ static int ogg_packet(AVFormatContext *s, int *str, int *dstart, int *dsize,
}
}while (!complete);
- av_dlog(s, AV_LOG_DEBUG,
- "ogg_packet: idx %i, frame size %i, start %i\n",
+ av_dlog(s, "ogg_packet: idx %i, frame size %i, start %i\n",
idx, os->psize, os->pstart);
if (os->granule == -1)
@@ -438,7 +436,7 @@ static int ogg_get_headers(AVFormatContext *s)
return -1;
}while (!ogg->headers);
- av_dlog(s, AV_LOG_DEBUG, "found headers\n");
+ av_dlog(s, "found headers\n");
return 0;
}