[FFmpeg-cvslog] fix nsvdec.c compilation if DEBUG macro defined
Maksym Veremeyenko
git
Wed Feb 16 23:18:32 CET 2011
ffmpeg | branch: master | Maksym Veremeyenko <verem at m1stereo.tv> | Wed Feb 16 09:52:44 2011 +0200| [c4461aa83c2947c1f8a454dacb12b91b780191e1] | committer: Michael Niedermayer
fix nsvdec.c compilation if DEBUG macro defined
Signed-off-by: Ronald S. Bultje <rsbultje at gmail.com>
(cherry picked from commit 41cdc1ff1e86f1bfb935e1bde53ccc9c645ff71e)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c4461aa83c2947c1f8a454dacb12b91b780191e1
---
libavformat/nsvdec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
index 9bf5636..d20b226 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' &&
More information about the ffmpeg-cvslog
mailing list