mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
dxva2-Video_Decoder: Use a bigger estimation for the maximum slice size (required for some HD videos).
This commit is contained in:
parent
b0cf640a90
commit
d1451cd34f
@ -88,7 +88,7 @@ index 0000000..1a5817e
|
||||
+
|
||||
+static inline UINT estimate_maximum_slice_size( UINT width, UINT height )
|
||||
+{
|
||||
+ return (2 * width * height * min(width, height)) / max(width, height);
|
||||
+ return (3 * width * height * min(width, height)) / max(width, height);
|
||||
+}
|
||||
+
|
||||
+typedef struct
|
||||
|
Loading…
Reference in New Issue
Block a user