diff options
author | Maksym Veremeyenko <[email protected]> | 2011-02-16 09:52:44 +0200 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2011-02-16 23:00:50 +0100 |
commit | c4461aa83c2947c1f8a454dacb12b91b780191e1 (patch) | |
tree | 0fbcdfdf161ad118f9b67e3db1034957124cca0b | |
parent | 33af787d8a892b51b7386a051f0cc0174c7e34ea (diff) |
fix nsvdec.c compilation if DEBUG macro defined
Signed-off-by: Ronald S. Bultje <[email protected]>
(cherry picked from commit 41cdc1ff1e86f1bfb935e1bde53ccc9c645ff71e)
-rw-r--r-- | libavformat/nsvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 9bf5636e5b..d20b226f2e 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -737,7 +737,7 @@ static int nsv_read_close(AVFormatContext *s) static int nsv_probe(AVProbeData *p) { int i; - av_dlog(s, "nsv_probe(), buf_size %d\n", p->buf_size); + av_dlog(NULL, "nsv_probe(), buf_size %d\n", p->buf_size); /* check file header */ /* streamed files might not have any header */ if (p->buf[0] == 'N' && p->buf[1] == 'S' && |