diff options
author | jstebbins <[email protected]> | 2014-01-13 18:43:07 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-01-13 18:43:07 +0000 |
commit | 1d137b47c62a47a4a08f13fc2bd8207633464fd5 (patch) | |
tree | bb7c5c62e67d079a4c66220f25a0c6df3e2438af /contrib/mpeg2dec/A02-gwluserdata.patch | |
parent | cd00b6f50ede70a9edef1785dd8c74e1d3ab4dad (diff) |
remove contrib mpeg2dec
We no longer need mpeg2dec. libav now has all the features we need
for mpeg2 decoding.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5966 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/mpeg2dec/A02-gwluserdata.patch')
-rw-r--r-- | contrib/mpeg2dec/A02-gwluserdata.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/contrib/mpeg2dec/A02-gwluserdata.patch b/contrib/mpeg2dec/A02-gwluserdata.patch deleted file mode 100644 index 385a4ef73..000000000 --- a/contrib/mpeg2dec/A02-gwluserdata.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -ru mpeg2dec.orig/libvo/video_out_dx.c mpeg2dec/libvo/video_out_dx.c ---- mpeg2dec.orig/libvo/video_out_dx.c 2008-07-09 11:28:24.000000000 -0700 -+++ mpeg2dec/libvo/video_out_dx.c 2012-09-08 05:31:39.304849824 -0700 -@@ -92,9 +92,9 @@ - switch (message) { - - case WM_WINDOWPOSCHANGED: -- instance = (dx_instance_t *) GetWindowLong (hwnd, GWL_USERDATA); -+ /*instance = (dx_instance_t *) GetWindowLong (hwnd, GWL_USERDATA); - -- /* update the window position and size */ -+ // update the window position and size - point_window.x = 0; - point_window.y = 0; - ClientToScreen (hwnd, &point_window); -@@ -104,9 +104,9 @@ - instance->window_coords.right = rect_window.right + point_window.x; - instance->window_coords.bottom = rect_window.bottom + point_window.y; - -- /* update the overlay */ -+ // update the overlay - if (instance->overlay && instance->display) -- update_overlay (instance); -+ update_overlay (instance);*/ - - return 0; - -@@ -173,7 +173,10 @@ - /* store a directx_instance pointer into the window local storage - * (for later use in event_handler). - * We need to use SetWindowLongPtr when it is available in mingw */ -- SetWindowLong (instance->window, GWL_USERDATA, (LONG) instance); -+ -+ // Current version of MINGW-W64 does not have this! -+ // Since we are not outputting to a display, this is not a problem. -+ //SetWindowLong (instance->window, GWL_USERDATA, (LONG) instance); - - ShowWindow (instance->window, SW_SHOW); - |