]> git.sesse.net Git - vlc/blobdiff - projects/macosx/framework/Sources/VLCVideoCommon.m
VLCKit.framework: Documentation updates and whitespace cleanup.
[vlc] / projects / macosx / framework / Sources / VLCVideoCommon.m
index 312eec342bd47f8f98de65e2712d3321b2fdfbb1..a17a9130c36bf3773ba6632aa42a6309426bfebe 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * VLCVideoCommon.m: VLC.framework VLCVideoCommon implementation
+ * VLCVideoCommon.m: VLCKit.framework VLCVideoCommon implementation
  *****************************************************************************
  * Copyright (C) 2007 Pierre d'Herbemont
  * Copyright (C) 2007 the VideoLAN team
  */
 
 @implementation VLCVideoLayoutManager 
-@synthesize  fillScreenEntirely;
-@synthesize  originalVideoSize;
 
+/* Factories */
 + (id)layoutManager
 {
     return [[[self alloc] init] autorelease];
 }
 
+/* CALayoutManager Impelmentation */
 - (void)layoutSublayersOfLayer:(CALayer *)layer
 {
     /* After having done everything normally resize the vlcopengllayer */
@@ -60,4 +60,8 @@
         videolayer.frame = videoRect;
     }
 }
+
+/* Properties */
+@synthesize fillScreenEntirely;
+@synthesize originalVideoSize;
 @end