Changeset f88c57c4e71bef2e168e4901069a651d9863fd38
- Timestamp:
- 04/01/08 00:33:04 (3 months ago)
- git-parent:
- Files:
-
- projects/macosx/framework/Headers/Public/VLCLibrary.h (modified) (1 diff)
- projects/macosx/framework/Headers/Public/VLCStreamOutput.h (modified) (1 diff)
- projects/macosx/framework/Headers/Public/VLCStreamSession.h (modified) (1 diff)
- projects/macosx/framework/Sources/VLCAudio.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCEventManager.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCLibrary.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCMedia.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCMediaDiscoverer.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCMediaLibrary.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCMediaList.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCMediaListAspect.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCMediaPlayer.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCStreamOutput.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCStreamSession.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCTime.m (modified) (1 diff)
- projects/macosx/framework/Sources/VLCVideoCommon.m (modified) (4 diffs)
- projects/macosx/framework/Sources/VLCVideoLayer.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/macosx/framework/Headers/Public/VLCLibrary.h
r43a3035 rf88c57c 1 1 /***************************************************************************** 2 * VLCLibrary.h: VLCKit.framework VLCLibrary implementation2 * VLCLibrary.h: VLCKit.framework VLCLibrary header 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Headers/Public/VLCStreamOutput.h
rb3372f1 rf88c57c 1 // 2 // VLCStreamOutput.h 3 // VLCKit 4 // 5 // Created by Pierre d'Herbemont on 1/12/08. 6 // Copyright 2008 __MyCompanyName__. All rights reserved. 7 // 1 /***************************************************************************** 2 * VLCStreamOutput.h: VLCKit.framework VLCStreamOutput header 3 ***************************************************************************** 4 * Copyright (C) 2008 Pierre d'Herbemont 5 * Copyright (C) 2008 the VideoLAN team 6 * $Id$ 7 * 8 * Authors: Pierre d'Herbemont <pdherbemont # videolan.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 8 24 9 25 #import <Cocoa/Cocoa.h> projects/macosx/framework/Headers/Public/VLCStreamSession.h
rb3372f1 rf88c57c 1 // 2 // VLCStreamSession.h 3 // VLCKit 4 // 5 // Created by Pierre d'Herbemont on 1/12/08. 6 // Copyright 2008 __MyCompanyName__. All rights reserved. 7 // 1 /***************************************************************************** 2 * VLCStreamSession.h: VLCKit.framework VLCStreamSession header 3 ***************************************************************************** 4 * Copyright (C) 2008 Pierre d'Herbemont 5 * Copyright (C) 2008 the VideoLAN team 6 * $Id$ 7 * 8 * Authors: Pierre d'Herbemont <pdherbemont # videolan.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 8 24 9 25 #import <Cocoa/Cocoa.h> projects/macosx/framework/Sources/VLCAudio.m
rb3372f1 rf88c57c 1 1 /***************************************************************************** 2 * VLCAudio.m: VLC .framework VLCAudio implementation2 * VLCAudio.m: VLCKit.framework VLCAudio implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Faustino E. Osuna projects/macosx/framework/Sources/VLCEventManager.m
rb3372f1 rf88c57c 1 1 /***************************************************************************** 2 * VLCEventManager.h: VLC.framework VLCEventManager implementation 3 * This is used to communicate in a sound way accross threads. 2 * VLCEventManager.m: VLCKit.framework VLCEventManager implementation 4 3 ***************************************************************************** 5 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCLibrary.m
r39bd598 rf88c57c 1 1 /***************************************************************************** 2 * VLCLibrary. h: VLC.framework VLCLibrary implementation2 * VLCLibrary.m: VLCKit.framework VLCLibrary implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCMedia.m
r313a874 rf88c57c 1 1 /***************************************************************************** 2 * VLCMedia.m: VLC .framework VLCMedia implementation2 * VLCMedia.m: VLCKit.framework VLCMedia implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCMediaDiscoverer.m
rb3372f1 rf88c57c 1 1 /***************************************************************************** 2 * VLCMediaDiscoverer.m: VLC .framework VLCMediaDiscoverer implementation2 * VLCMediaDiscoverer.m: VLCKit.framework VLCMediaDiscoverer implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCMediaLibrary.m
rb3372f1 rf88c57c 1 1 /***************************************************************************** 2 * VLCMedia Discoverer.m: VLC.framework VLCMediaDiscovererimplementation2 * VLCMediaLibrary.m: VLCKit.framework VLCMediaLibrary implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCMediaList.m
rbf1292e rf88c57c 1 1 /***************************************************************************** 2 * VLCMediaList.m: VLC .framework VLCMediaList implementation2 * VLCMediaList.m: VLCKit.framework VLCMediaList implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCMediaListAspect.m
rbf1292e rf88c57c 1 1 /***************************************************************************** 2 * VLCMediaList .m: VLC.framework VLCMediaList implementation2 * VLCMediaListAspect.m: VLCKit.framework VLCMediaListAspect implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCMediaPlayer.m
r313a874 rf88c57c 1 1 /***************************************************************************** 2 * VLCMediaPlayer.m: VLC .framework VLCMediaPlayer implementation2 * VLCMediaPlayer.m: VLCKit.framework VLCMediaPlayer implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCStreamOutput.m
rb3372f1 rf88c57c 1 // 2 // VLCStreamOutput.m 3 // VLCKit 4 // 5 // Created by Pierre d'Herbemont on 1/12/08. 6 // Copyright 2008 __MyCompanyName__. All rights reserved. 7 // 1 /***************************************************************************** 2 * VLCStreamOutput.m: VLCKit.framework VLCStreamOutput implementation 3 ***************************************************************************** 4 * Copyright (C) 2008 Pierre d'Herbemont 5 * Copyright (C) 2008 the VideoLAN team 6 * $Id$ 7 * 8 * Authors: Pierre d'Herbemont <pdherbemont # videolan.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 8 24 9 25 #import "VLCStreamOutput.h" 10 26 #import "VLCLibVLCBridging.h" 11 12 27 13 28 @implementation VLCStreamOutput projects/macosx/framework/Sources/VLCStreamSession.m
rb3372f1 rf88c57c 1 // 2 // VLCStreamSession.m 3 // VLCKit 4 // 5 // Created by Pierre d'Herbemont on 1/12/08. 6 // Copyright 2008 __MyCompanyName__. All rights reserved. 7 // 1 /***************************************************************************** 2 * VLCStreamSession.m: VLCKit.framework VLCStreamSession implementation 3 ***************************************************************************** 4 * Copyright (C) 2008 Pierre d'Herbemont 5 * Copyright (C) 2008 the VideoLAN team 6 * $Id$ 7 * 8 * Authors: Pierre d'Herbemont <pdherbemont # videolan.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 8 24 9 25 #import "VLCStreamSession.h" projects/macosx/framework/Sources/VLCTime.m
rb3372f1 rf88c57c 1 1 /***************************************************************************** 2 * VLCTime. h: VLC.framework VLCTime implementation2 * VLCTime.m: VLCKit.framework VLCTime implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont projects/macosx/framework/Sources/VLCVideoCommon.m
rdbddc5a rf88c57c 1 1 /***************************************************************************** 2 * VLCVideoCommon.m: VLC .framework VLCVideoCommon implementation2 * VLCVideoCommon.m: VLCKit.framework VLCVideoCommon implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont … … 32 32 33 33 @implementation VLCVideoLayoutManager 34 @synthesize fillScreenEntirely;35 @synthesize originalVideoSize;36 34 35 /* Factories */ 37 36 + (id)layoutManager 38 37 { … … 40 39 } 41 40 41 /* CALayoutManager Impelmentation */ 42 42 - (void)layoutSublayersOfLayer:(CALayer *)layer 43 43 { … … 61 61 } 62 62 } 63 64 /* Properties */ 65 @synthesize fillScreenEntirely; 66 @synthesize originalVideoSize; 63 67 @end projects/macosx/framework/Sources/VLCVideoLayer.m
rdbddc5a rf88c57c 1 1 /***************************************************************************** 2 * VLCVideoLayer.m: VLC .framework VLCVideoLayer implementation2 * VLCVideoLayer.m: VLCKit.framework VLCVideoLayer implementation 3 3 ***************************************************************************** 4 4 * Copyright (C) 2007 Pierre d'Herbemont
