From: Martin Bugge <[email protected]> Audio channel count should start from 2.
Reference: CEA-861-F Table 27. Cc: Hans Verkuil <[email protected]> Reported-by: Ahung Cheng <[email protected]> Signed-off-by: Martin Bugge <[email protected]> --- drivers/video/hdmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c index 61f803f75a47..5f78b254dd59 100644 --- a/drivers/video/hdmi.c +++ b/drivers/video/hdmi.c @@ -884,7 +884,7 @@ static void hdmi_audio_infoframe_log(const char *level, (struct hdmi_any_infoframe *)frame); if (frame->channels) - hdmi_log(" channels: %u\n", frame->channels - 1); + hdmi_log(" channels: %u\n", frame->channels + 1); else hdmi_log(" channels: Refer to stream header\n"); hdmi_log(" coding type: %s\n", -- 2.14.1 _______________________________________________ dri-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/dri-devel
