Module: ffmpeg Branch: master Commit: 41cdc1ff1e86f1bfb935e1bde53ccc9c645ff71e
Author: Maksym Veremeyenko <[email protected]> Date: Wed Feb 16 09:52:44 2011 +0200 fix nsvdec.c compilation if DEBUG macro defined Signed-off-by: Ronald S. Bultje <[email protected]> --- 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' && _______________________________________________ ffmpeg-commits mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-commits
