Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1450)

Side by Side Diff: third_party/ffmpeg/patched-ffmpeg-mt/mt-work/mplayer.diff

Issue 566011: FFmpeg add mt-work folder for completeness. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 /*
OLDNEW
« no previous file with comments | « third_party/ffmpeg/patched-ffmpeg-mt/mt-work/email.sh ('k') | third_party/ffmpeg/patched-ffmpeg-mt/mt-work/test.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698