Browse Source

Add a context to av_log() call and update the trace not to be redundant.

Originally committed as revision 17380 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Benoit Fouet 16 years ago
parent
commit
b4314bff6b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mm.c

+ 1
- 1
libavformat/mm.c View File

@@ -168,7 +168,7 @@ static int mm_read_packet(AVFormatContext *s,
return 0;

default :
av_log(NULL, AV_LOG_INFO, "mm: unknown chunk type 0x%x\n", type);
av_log(s, AV_LOG_INFO, "unknown chunk type 0x%x\n", type);
url_fseek(pb, length, SEEK_CUR);
}
}


Loading…
Cancel
Save