-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1133 from mrolappe/darlingserver-stubs-DiscRecording
DiscRecording framework stubs
- Loading branch information
Showing
65 changed files
with
3,338 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
project(DiscRecording) | ||
|
||
set(DYLIB_COMPAT_VERSION "1.0.0") | ||
set(DYLIB_CURRENT_VERSION "1.0.0") | ||
|
||
add_framework(DiscRecording | ||
FAT | ||
CURRENT_VERSION | ||
VERSION "A" | ||
|
||
SOURCES | ||
src/DiscRecording.m | ||
src/DRBurn.m | ||
src/DRDevice.m | ||
src/DRErase.m | ||
src/DRNotificationCenter.m | ||
src/DRTask.m | ||
src/DRCDTextBlock.m | ||
src/DRMSF.m | ||
src/DRMSFFormatter.m | ||
src/DRTrack.m | ||
src/DRPrepare.m | ||
src/DRSession.m | ||
src/DRSessionCDTextProducer.m | ||
src/DRSessionProducerPlaceholder.m | ||
src/DRCallbackDevice.m | ||
src/DRAudioTrack.m | ||
src/DRFilesystemTrack.m | ||
src/DRFile.m | ||
src/DRFolder.m | ||
src/DRFSObject.m | ||
src/DRBINFileProducer.m | ||
src/DRSilenceGenerator.m | ||
src/DRDataGenerator.m | ||
src/DRAudioGenerator.m | ||
src/DRCueFileParser.m | ||
src/DRPartialFileAudioProducer.m | ||
src/DRTOCFileParser.m | ||
src/DRTOCProducer.m | ||
src/DRDeviceFilter.m | ||
src/DRDefaultDeviceFilter.m | ||
|
||
DEPENDENCIES | ||
system | ||
objc | ||
Foundation | ||
) |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRAudioGenerator.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRAudioGenerator : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRAudioTrack.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRAudioTrack : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRBINFileProducer.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRBINFileProducer : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRBurn.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRBurn : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRCDTextBlock.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRCDTextBlock : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRCallbackDevice.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRCallbackDevice : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRContentGenerator.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@protocol DRContentGenerator | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRCueFileParser.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRCueFileParser : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRDataGenerator.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRDataGenerator : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRDefaultDeviceFilter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRDefaultDeviceFilter : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRDevice.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRDevice : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRDeviceFilter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@interface DRDeviceFilter : NSObject | ||
|
||
@end |
24 changes: 24 additions & 0 deletions
24
src/frameworks/DiscRecording/include/DiscRecording/DRDeviceFilterDelegate.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of Darling. | ||
Copyright (C) 2019 Lubos Dolezel | ||
Darling 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 3 of the License, or | ||
(at your option) any later version. | ||
Darling 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 Darling. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <Foundation/Foundation.h> | ||
|
||
@protocol DRDeviceFilterDelegate | ||
|
||
@end |
Oops, something went wrong.