[Bug 97442] [HSW HDMI] Audio with 44.1 khz not working when 1920x1080p screen refreshrate > 30hz

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Sat Aug 27 21:36:16 UTC 2016


https://bugs.freedesktop.org/show_bug.cgi?id=97442

--- Comment #14 from Mark Wilczynski <Mark_Wilczynski at hotmail.com> ---
(In reply to Chris Wilson from comment #11)
> Created attachment 126057 [details] [review]
> Limit the depth of the display pipeline to the framebuffer
> 
> Compile tested only!

If I understand your intent correctly, I think there's a logic bug in this
patch.

+       if (plane_state->fb->depth > bpp)
+               bpp = 8*3;

Shouldn't that say:

+       if (plane_state->fb->depth < bpp)
+               bpp = 8*3;

That is if the FB bit depth is less than the supported bpp of the display
(36-bit in my case), then clamp the bpp to that of the frame buffer (24-bit).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the QA Contact for the bug.
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/intel-gfx-bugs/attachments/20160827/b269a4bd/attachment.html>


More information about the intel-gfx-bugs mailing list