1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

Avcodec: comment an extra debug message on subtitles size

This commit is contained in:
Jean-Baptiste Kempf 2010-02-22 22:10:50 +01:00
parent 3620e95f21
commit 6ebad9e33d

View 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) {