Closed
Bug 1145029
Opened 8 years ago
Closed 8 years ago
AMD GPU's have issues with 4k video
Categories
(Core :: Audio/Video, defect)
Tracking
()
RESOLVED
FIXED
mozilla39
People
(Reporter: mattwoodrow, Assigned: mattwoodrow)
References
(Depends on 1 open bug)
Details
Attachments
(1 file)
6.53 KB,
patch
|
jya
:
review+
lmandel
:
approval-mozilla-aurora+
lmandel
:
approval-mozilla-beta+
|
Details | Diff | Splinter Review |
Bug 1131638 implemented a fallback to software decoding when we detect that frames are being corrupted. Since we know that basically all AMD cards have problems with 4k video, we should just disable this and avoid blocking hardware decoding for other resolutions.
Assignee | ||
Comment 1•8 years ago
|
||
Attachment #8579846 -
Flags: review?(jyavenard)
Comment 2•8 years ago
|
||
Comment on attachment 8579846 [details] [diff] [review] disable-hw-accel-4k Review of attachment 8579846 [details] [diff] [review]: ----------------------------------------------------------------- Should make SupportsSharedDecoders const. ::: dom/media/fmp4/PlatformDecoderModule.h @@ +138,5 @@ > virtual void DisableHardwareAcceleration() {} > > + virtual bool SupportsSharedDecoders(const mp4_demuxer::VideoDecoderConfig& aConfig) { > + return true; > + } should make this member const ::: dom/media/fmp4/wmf/WMFDecoderModule.h @@ +41,5 @@ > { > sDXVAEnabled = false; > } > > + virtual bool SupportsSharedDecoders(const mp4_demuxer::VideoDecoderConfig& aConfig) MOZ_OVERRIDE; const
Attachment #8579846 -
Flags: review?(jyavenard) → review+
Assignee | ||
Comment 3•8 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/117a35077c1b
Assignee | ||
Comment 4•8 years ago
|
||
Comment on attachment 8579846 [details] [diff] [review] disable-hw-accel-4k Approval Request Comment [Feature/regressing bug #]: HTML5 Video [User impact if declined]: Attempting 4k video will disable h/w accel for all videos for the rest of the session for AMD users. [Describe test coverage new/current, TreeHerder]: [Risks and why]: Not a huge deal, but will improve user experience if users attempt 4k video. [String/UUID change made/needed]: None
Attachment #8579846 -
Flags: approval-mozilla-beta?
Attachment #8579846 -
Flags: approval-mozilla-aurora?
Comment 5•8 years ago
|
||
Comment on attachment 8579846 [details] [diff] [review] disable-hw-accel-4k I spoke with cpearce about this patch. The patch makes us take a well tested software path over a buggy driver hardware path. We'll take this in b7. Beta+ Aurora+
Attachment #8579846 -
Flags: approval-mozilla-beta?
Attachment #8579846 -
Flags: approval-mozilla-beta+
Attachment #8579846 -
Flags: approval-mozilla-aurora?
Attachment #8579846 -
Flags: approval-mozilla-aurora+
Comment 6•8 years ago
|
||
https://hg.mozilla.org/releases/mozilla-beta/rev/2445fcfe99d4
status-firefox37:
--- → fixed
Comment 7•8 years ago
|
||
https://hg.mozilla.org/releases/mozilla-aurora/rev/d95e5e43ea20
status-firefox38:
--- → fixed
https://hg.mozilla.org/mozilla-central/rev/117a35077c1b
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox39:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla39
You need to log in
before you can comment on or make changes to this bug.
Description
•