[vlc-commits] [Git][videolan/vlc][master] es_format: fix description of chroma/multiview mode changing
Steve Lhomme (@robUx4)
gitlab at videolan.org
Wed Nov 29 06:39:03 UTC 2023
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
d5d7cf93 by Steve Lhomme at 2023-11-29T05:59:15+00:00
es_format: fix description of chroma/multiview mode changing
- - - - -
1 changed file:
- src/misc/es_format.c
Changes:
=====================================
src/misc/es_format.c
=====================================
@@ -244,7 +244,7 @@ void video_format_LogDifferences(struct vlc_logger *log,
const char *name_b, const video_format_t *b)
{
if (a->i_chroma != b->i_chroma)
- vlc_debug(log, "'%s/%s' category %4.4s / %4.4s", name_a, name_b, (char*)&a->i_chroma, (char*)&b->i_chroma);
+ vlc_debug(log, "'%s/%s' i_chroma %4.4s / %4.4s", name_a, name_b, (char*)&a->i_chroma, (char*)&b->i_chroma);
if( a->i_width != b->i_width )
vlc_debug(log, "'%s/%s' i_width %u / %u", name_a, name_b, a->i_width, b->i_width);
if( a->i_height != b->i_height )
@@ -265,7 +265,7 @@ void video_format_LogDifferences(struct vlc_logger *log,
vlc_debug(log, "'%s/%s' orientation %d / %d", name_a, name_b, a->orientation, b->orientation);
if( a->multiview_mode!= b->multiview_mode )
- vlc_debug(log, "'%s/%s' orientation %d / %d", name_a, name_b, a->multiview_mode, b->multiview_mode);
+ vlc_debug(log, "'%s/%s' multiview_mode %d / %d", name_a, name_b, a->multiview_mode, b->multiview_mode);
}
static const char *orient_to_string[] =
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d5d7cf93bcc50d64af94154ef069d849e9604ea9
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d5d7cf93bcc50d64af94154ef069d849e9604ea9
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list