[vlc-devel] commit: macosx: Fix postprocessing menu item (Derk-Jan Hartman )

git version control git at videolan.org
Wed Jun 3 23:34:31 CEST 2009


vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Wed Jun  3 23:03:22 2009 +0200| [20967dfe87ca089b623408f31759449c737b7a54] | committer: Derk-Jan Hartman 

macosx: Fix postprocessing menu item

This closes #2814

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=20967dfe87ca089b623408f31759449c737b7a54
---

 modules/gui/macosx/intf.m |   19 +++++--------------
 1 files changed, 5 insertions(+), 14 deletions(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 6e4ad9c..466d25f 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -1895,20 +1895,11 @@ end:
             [o_controls setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
                 var: "deinterlace" selector: @selector(toggleVar:)];
 
-#if 0
-/* FIXME Post processing. */
-            p_dec_obj = (vlc_object_t *)vlc_object_find(
-                                                 (vlc_object_t *)p_vout,
-                                                 VLC_OBJECT_DECODER,
-                                                 FIND_PARENT );
-            if( p_dec_obj != NULL )
-            {
-               [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
-                    (vlc_object_t *)p_dec_obj var:"ffmpeg-pp-q" selector:
+#if 1
+           [o_controls setupVarMenuItem: o_mi_ffmpeg_pp target:
+                    (vlc_object_t *)p_vout var:"postprocess" selector:
                     @selector(toggleVar:)];
 
-                vlc_object_release(p_dec_obj);
-            }
 #endif
             vlc_object_release( (vlc_object_t *)p_vout );
         }
@@ -2562,9 +2553,9 @@ end:
 
     if( [o_msg_arr count] + 2 > 600 )
     {
-		[o_msg_arr removeObjectAtIndex: 0];
+        [o_msg_arr removeObjectAtIndex: 0];
         [o_msg_arr removeObjectAtIndex: 1];
-   }
+    }
 
     o_attr = [NSDictionary dictionaryWithObject: o_gray
                                          forKey: NSForegroundColorAttributeName];




More information about the vlc-devel mailing list