[Ffmpeg-cvslog] CVS: ffmpeg/libavformat utils.c,1.149,1.150
Michael Niedermayer CVS
michael
Sun May 29 13:44:24 CEST 2005
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat 4xm.c, 1.17, 1.18 amr.c, 1.6, 1.7 asf.c, 1.79, 1.80 au.c, 1.19, 1.20 avformat.h, 1.119, 1.120 avidec.c, 1.71, 1.72 electronicarts.c, 1.1, 1.2 ffm.c, 1.41, 1.42 flic.c, 1.5, 1.6 flvdec.c, 1.18, 1.19 idcin.c, 1.5, 1.6 idroq.c, 1.8, 1.9 ipmovie.c, 1.11, 1.12 matroska.c, 1.12, 1.13 mov.c, 1.84, 1.85 mp3.c, 1.7, 1.8 mpegts.c, 1.28, 1.29 nsvdec.c, 1.7, 1.8 nut.c, 1.48, 1.49 psxstr.c, 1.7, 1.8 raw.c, 1.53, 1.54 rm.c, 1.46, 1.47 segafilm.c, 1.7, 1.8 sierravmd.c, 1.6, 1.7 sol.c, 1.2, 1.3 swf.c, 1.24, 1.25 utils.c, 1.148, 1.149 wc3movie.c, 1.10, 1.11 westwood.c, 1.6, 1.7 yuv4mpeg.c, 1.22, 1.23
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec cabac.h,1.10,1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv10184
Modified Files:
utils.c
Log Message:
changing a few AV_LOG_DEBUG to AV_LOG_INFO
Index: utils.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/utils.c,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -d -r1.149 -r1.150
--- utils.c 26 May 2005 20:17:12 -0000 1.149
+++ utils.c 29 May 2005 11:44:21 -0000 1.150
@@ -2377,13 +2377,13 @@
int i, flags;
char buf[256];
- av_log(NULL, AV_LOG_DEBUG, "%s #%d, %s, %s '%s':\n",
+ av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
is_output ? "Output" : "Input",
index,
is_output ? ic->oformat->name : ic->iformat->name,
is_output ? "to" : "from", url);
if (!is_output) {
- av_log(NULL, AV_LOG_DEBUG, " Duration: ");
+ av_log(NULL, AV_LOG_INFO, " Duration: ");
if (ic->duration != AV_NOPTS_VALUE) {
int hours, mins, secs, us;
secs = ic->duration / AV_TIME_BASE;
@@ -2392,31 +2392,31 @@
secs %= 60;
hours = mins / 60;
mins %= 60;
- av_log(NULL, AV_LOG_DEBUG, "%02d:%02d:%02d.%01d", hours, mins, secs,
+ av_log(NULL, AV_LOG_INFO, "%02d:%02d:%02d.%01d", hours, mins, secs,
(10 * us) / AV_TIME_BASE);
} else {
- av_log(NULL, AV_LOG_DEBUG, "N/A");
+ av_log(NULL, AV_LOG_INFO, "N/A");
}
if (ic->start_time != AV_NOPTS_VALUE) {
int secs, us;
- av_log(NULL, AV_LOG_DEBUG, ", start: ");
+ av_log(NULL, AV_LOG_INFO, ", start: ");
secs = ic->start_time / AV_TIME_BASE;
us = ic->start_time % AV_TIME_BASE;
- av_log(NULL, AV_LOG_DEBUG, "%d.%06d",
+ av_log(NULL, AV_LOG_INFO, "%d.%06d",
secs, (int)av_rescale(us, 1000000, AV_TIME_BASE));
}
- av_log(NULL, AV_LOG_DEBUG, ", bitrate: ");
+ av_log(NULL, AV_LOG_INFO, ", bitrate: ");
if (ic->bit_rate) {
- av_log(NULL, AV_LOG_DEBUG,"%d kb/s", ic->bit_rate / 1000);
+ av_log(NULL, AV_LOG_INFO,"%d kb/s", ic->bit_rate / 1000);
} else {
- av_log(NULL, AV_LOG_DEBUG, "N/A");
+ av_log(NULL, AV_LOG_INFO, "N/A");
}
- av_log(NULL, AV_LOG_DEBUG, "\n");
+ av_log(NULL, AV_LOG_INFO, "\n");
}
for(i=0;i<ic->nb_streams;i++) {
AVStream *st = ic->streams[i];
avcodec_string(buf, sizeof(buf), &st->codec, is_output);
- av_log(NULL, AV_LOG_DEBUG, " Stream #%d.%d", index, i);
+ av_log(NULL, AV_LOG_INFO, " Stream #%d.%d", index, i);
/* the pid is an important information, so we display it */
/* XXX: add a generic system */
if (is_output)
@@ -2424,9 +2424,9 @@
else
flags = ic->iformat->flags;
if (flags & AVFMT_SHOW_IDS) {
- av_log(NULL, AV_LOG_DEBUG, "[0x%x]", st->id);
+ av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
}
- av_log(NULL, AV_LOG_DEBUG, ": %s\n", buf);
+ av_log(NULL, AV_LOG_INFO, ": %s\n", buf);
}
}
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat 4xm.c, 1.17, 1.18 amr.c, 1.6, 1.7 asf.c, 1.79, 1.80 au.c, 1.19, 1.20 avformat.h, 1.119, 1.120 avidec.c, 1.71, 1.72 electronicarts.c, 1.1, 1.2 ffm.c, 1.41, 1.42 flic.c, 1.5, 1.6 flvdec.c, 1.18, 1.19 idcin.c, 1.5, 1.6 idroq.c, 1.8, 1.9 ipmovie.c, 1.11, 1.12 matroska.c, 1.12, 1.13 mov.c, 1.84, 1.85 mp3.c, 1.7, 1.8 mpegts.c, 1.28, 1.29 nsvdec.c, 1.7, 1.8 nut.c, 1.48, 1.49 psxstr.c, 1.7, 1.8 raw.c, 1.53, 1.54 rm.c, 1.46, 1.47 segafilm.c, 1.7, 1.8 sierravmd.c, 1.6, 1.7 sol.c, 1.2, 1.3 swf.c, 1.24, 1.25 utils.c, 1.148, 1.149 wc3movie.c, 1.10, 1.11 westwood.c, 1.6, 1.7 yuv4mpeg.c, 1.22, 1.23
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec cabac.h,1.10,1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list