OLD | NEW |
(Empty) | |
| 1 Index: libvo/vo_corevideo.m |
| 2 =================================================================== |
| 3 --- libvo/vo_corevideo.m (revision 29318) |
| 4 +++ libvo/vo_corevideo.m (working copy) |
| 5 @@ -466,6 +466,8 @@ |
| 6 NSRect frame; |
| 7 CVReturn error = kCVReturnSuccess; |
| 8 |
| 9 + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
| 10 + |
| 11 //config window |
| 12 aspect((int *)&d_width, (int *)&d_height,A_NOZOOM); |
| 13 frame = NSMakeRect(0, 0, d_width, d_height); |
| 14 @@ -508,6 +510,8 @@ |
| 15 |
| 16 if(vo_ontop) |
| 17 [mpGLView ontop]; |
| 18 + |
| 19 + [pool release]; |
| 20 } |
| 21 |
| 22 /* |
OLD | NEW |