]> git.sesse.net Git - vlc/commitdiff
Avcodec: comment an extra debug message on subtitles size
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 22 Feb 2010 21:10:50 +0000 (22:10 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 22 Feb 2010 21:12:34 +0000 (22:12 +0100)
modules/codec/avcodec/subtitle.c

index d46435c11dc317699e3eeddf9312a90842d76024..cea176782fd3b574469bdae70e0a1b9fe81ac902 100644 (file)
@@ -259,8 +259,8 @@ static subpicture_t *ConvertSubtitle(decoder_t *dec, AVSubtitle *ffsub, mtime_t
     for (unsigned i = 0; i < ffsub->num_rects; i++) {
         AVSubtitleRect *rec = ffsub->rects[i];
 
-        msg_Err(dec, "SUBS RECT[%d]: %dx%d @%dx%d",
-                 i, rec->w, rec->h, rec->x, rec->y);
+        //msg_Err(dec, "SUBS RECT[%d]: %dx%d @%dx%d",
+        //         i, rec->w, rec->h, rec->x, rec->y);
 
         subpicture_region_t *region;
         switch (ffsub->format) {