Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
1ca5880f
Commit
1ca5880f
authored
Dec 25, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added our GPL copyright header to all files
parent
2d73307c
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
264 additions
and
84 deletions
+264
-84
projects/macosx/frontrow_plugin/English.lproj/InfoPlist.strings
...ts/macosx/frontrow_plugin/English.lproj/InfoPlist.strings
+0
-0
projects/macosx/frontrow_plugin/VLCAppliance.h
projects/macosx/frontrow_plugin/VLCAppliance.h
+22
-7
projects/macosx/frontrow_plugin/VLCAppliance.m
projects/macosx/frontrow_plugin/VLCAppliance.m
+22
-7
projects/macosx/frontrow_plugin/VLCApplianceController.h
projects/macosx/frontrow_plugin/VLCApplianceController.h
+22
-7
projects/macosx/frontrow_plugin/VLCApplianceController.m
projects/macosx/frontrow_plugin/VLCApplianceController.m
+22
-7
projects/macosx/frontrow_plugin/VLCDebug.h
projects/macosx/frontrow_plugin/VLCDebug.h
+22
-7
projects/macosx/frontrow_plugin/VLCDebug.m
projects/macosx/frontrow_plugin/VLCDebug.m
+22
-7
projects/macosx/frontrow_plugin/VLCMediaLayer.h
projects/macosx/frontrow_plugin/VLCMediaLayer.h
+22
-7
projects/macosx/frontrow_plugin/VLCMediaLayer.m
projects/macosx/frontrow_plugin/VLCMediaLayer.m
+22
-7
projects/macosx/frontrow_plugin/VLCMediaListController.h
projects/macosx/frontrow_plugin/VLCMediaListController.h
+22
-7
projects/macosx/frontrow_plugin/VLCMediaListController.m
projects/macosx/frontrow_plugin/VLCMediaListController.m
+22
-7
projects/macosx/frontrow_plugin/VLCPlayerController.h
projects/macosx/frontrow_plugin/VLCPlayerController.h
+22
-7
projects/macosx/frontrow_plugin/VLCPlayerController.m
projects/macosx/frontrow_plugin/VLCPlayerController.m
+22
-7
No files found.
projects/macosx/frontrow_plugin/English.lproj/InfoPlist.strings
View file @
1ca5880f
B
/* Localized versions of Info.plist keys */
...
...
projects/macosx/frontrow_plugin/VLCAppliance.h
View file @
1ca5880f
//
// VLCAppliance.h
// FRVLC
//
// Created by hyei on 31/08/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCAppliance.h: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <BackRow/BRAppliance.h>
...
...
projects/macosx/frontrow_plugin/VLCAppliance.m
View file @
1ca5880f
//
// VLCAppliance.m
// FRVLC
//
// Created by hyei on 31/08/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCAppliance.m: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <VLCKit/VLCKit.h>
...
...
projects/macosx/frontrow_plugin/VLCApplianceController.h
View file @
1ca5880f
//
// VLCApplianceController.h
// FRVLC
//
// Created by hyei on 06/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCApplianceController.h: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <BackRow/BRMenuController.h>
...
...
projects/macosx/frontrow_plugin/VLCApplianceController.m
View file @
1ca5880f
//
// VLCApplianceController.m
// FRVLC
//
// Created by hyei on 06/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCApplianceController.m: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCApplianceController.h"
...
...
projects/macosx/frontrow_plugin/VLCDebug.h
View file @
1ca5880f
//
// VLCDebug.h
// FRVLC
//
// Created by hyei on 06/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCDebug.h: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
...
...
projects/macosx/frontrow_plugin/VLCDebug.m
View file @
1ca5880f
//
// VLCDebug.m
// FRVLC
//
// Created by hyei on 06/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCDebug.m: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCDebug.h"
...
...
projects/macosx/frontrow_plugin/VLCMediaLayer.h
View file @
1ca5880f
//
// VLCMediaLayer.h
// FRVLC
//
// Created by hyei on 11/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCMediaLayer.h: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <QuartzCore/QuartzCore.h>
...
...
projects/macosx/frontrow_plugin/VLCMediaLayer.m
View file @
1ca5880f
//
// VLCMediaLayer.m
// FRVLC
//
// Created by hyei on 11/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCMediaLayer.m: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCMediaLayer.h"
...
...
projects/macosx/frontrow_plugin/VLCMediaListController.h
View file @
1ca5880f
//
// VLCMediaListController.h
// FRVLC
//
// Created by Pierre d'Herbemont on 2/11/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCMediaListController.h: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont at videolan dot org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <VLCKit/VLCKit.h>
...
...
projects/macosx/frontrow_plugin/VLCMediaListController.m
View file @
1ca5880f
//
// VLCMediaListController.m
// FRVLC
//
// Created by Pierre d'Herbemont on 2/11/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCMediaListController.m: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont at videolan dot org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCMediaListController.h"
#import "VLCPlayerController.h"
...
...
projects/macosx/frontrow_plugin/VLCPlayerController.h
View file @
1ca5880f
//
// VLCPlayerController.h
// FRVLC
//
// Created by hyei on 06/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCPlayerController.h: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <BackRow/BRMediaPlayerController.h>
...
...
projects/macosx/frontrow_plugin/VLCPlayerController.m
View file @
1ca5880f
//
// VLCPlayerController.m
// FRVLC
//
// Created by hyei on 06/09/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
/*****************************************************************************
* VLCPlayerController.m: Front Row plugin
*****************************************************************************
* Copyright (C) 2007 - 2008 the VideoLAN Team
* $Id$
*
* Authors: hyei
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCPlayerController.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment