You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
dxva2-Video_Decoder: Use a bigger estimation for the maximum slice size (required for some HD videos).
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user