From b4ec08d63ef69ba4bae16f21ba0b31a82b813fea Mon Sep 17 00:00:00 2001 From: Sangchul Lee Date: Mon, 31 Oct 2016 18:16:05 +0900 Subject: [PATCH] [AudioIO/AudioManager] Update license [Version] 1.0.4 [Profile] Common [Issue Type] License Change-Id: If15d79bce2d433ef80bba9b4093d9bc880c34ee2 Signed-off-by: Sangchul Lee --- packaging/csapi-multimedia.spec | 4 ++-- src/Tizen.Multimedia/AudioIO/AudioErrorHelper.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioIO/AudioIOEnumerations.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioIO/AudioInput.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioIO/AudioOutput.cs | 18 +++++++++++++++++- .../AudioIO/AudioStateChangedEventArgs.cs | 18 +++++++++++++++++- .../AudioIO/AudioStreamLengthChangedEventArgs.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioIO/BaseAudio.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioManager/AudioDevice.cs | 18 +++++++++++++++++- .../AudioDeviceConnectionChangedEventArgs.cs | 18 +++++++++++++++++- .../AudioDevicePropertyChangedEventArgs.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioManager/AudioManager.cs | 18 +++++++++++++++++- .../AudioManager/AudioManagerEnumerations.cs | 18 +++++++++++++++++- .../AudioManager/AudioManagerErrorFactory.cs | 16 ++++++++++++++++ src/Tizen.Multimedia/AudioManager/AudioStreamPolicy.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioManager/AudioVolume.cs | 18 +++++++++++++++++- .../AudioManager/FocusStateChangedEventArgs.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioManager/MaxVolumeLevel.cs | 18 +++++++++++++++++- .../AudioManager/StreamFocusStateChangedEventArgs.cs | 18 +++++++++++++++++- .../AudioManager/VolumeChangedEventArgs.cs | 18 +++++++++++++++++- src/Tizen.Multimedia/AudioManager/VolumeLevel.cs | 18 +++++++++++++++++- 21 files changed, 341 insertions(+), 21 deletions(-) mode change 100644 => 100755 src/Tizen.Multimedia/AudioManager/VolumeChangedEventArgs.cs diff --git a/packaging/csapi-multimedia.spec b/packaging/csapi-multimedia.spec index 9146be5..48a46a0 100644 --- a/packaging/csapi-multimedia.spec +++ b/packaging/csapi-multimedia.spec @@ -8,8 +8,8 @@ Name: csapi-multimedia Summary: Tizen Multimedia API for C# -Version: 1.0.3 -Release: 1 +Version: 1.0.4 +Release: 0 Group: Development/Libraries License: Apache-2.0 URL: https://www.tizen.org diff --git a/src/Tizen.Multimedia/AudioIO/AudioErrorHelper.cs b/src/Tizen.Multimedia/AudioIO/AudioErrorHelper.cs index fe28f4c..078f599 100755 --- a/src/Tizen.Multimedia/AudioIO/AudioErrorHelper.cs +++ b/src/Tizen.Multimedia/AudioIO/AudioErrorHelper.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioIO/AudioIOEnumerations.cs b/src/Tizen.Multimedia/AudioIO/AudioIOEnumerations.cs index aa9a0b3..8a29422 100755 --- a/src/Tizen.Multimedia/AudioIO/AudioIOEnumerations.cs +++ b/src/Tizen.Multimedia/AudioIO/AudioIOEnumerations.cs @@ -1,4 +1,20 @@ -using Tizen.Internals.Errors; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using Tizen.Internals.Errors; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioIO/AudioInput.cs b/src/Tizen.Multimedia/AudioIO/AudioInput.cs index d358165..4da40b0 100755 --- a/src/Tizen.Multimedia/AudioIO/AudioInput.cs +++ b/src/Tizen.Multimedia/AudioIO/AudioInput.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; using System.Runtime.InteropServices; namespace Tizen.Multimedia diff --git a/src/Tizen.Multimedia/AudioIO/AudioOutput.cs b/src/Tizen.Multimedia/AudioIO/AudioOutput.cs index d2bad14..c2153e7 100755 --- a/src/Tizen.Multimedia/AudioIO/AudioOutput.cs +++ b/src/Tizen.Multimedia/AudioIO/AudioOutput.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; using System.Runtime.InteropServices; namespace Tizen.Multimedia diff --git a/src/Tizen.Multimedia/AudioIO/AudioStateChangedEventArgs.cs b/src/Tizen.Multimedia/AudioIO/AudioStateChangedEventArgs.cs index ab3d4f1..e6972dd 100755 --- a/src/Tizen.Multimedia/AudioIO/AudioStateChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioIO/AudioStateChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioIO/AudioStreamLengthChangedEventArgs.cs b/src/Tizen.Multimedia/AudioIO/AudioStreamLengthChangedEventArgs.cs index 3c3c772..e2fd523 100755 --- a/src/Tizen.Multimedia/AudioIO/AudioStreamLengthChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioIO/AudioStreamLengthChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioIO/BaseAudio.cs b/src/Tizen.Multimedia/AudioIO/BaseAudio.cs index 6f7c7cb..ee1fff4 100755 --- a/src/Tizen.Multimedia/AudioIO/BaseAudio.cs +++ b/src/Tizen.Multimedia/AudioIO/BaseAudio.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/AudioDevice.cs b/src/Tizen.Multimedia/AudioManager/AudioDevice.cs index 0cd6004..ba9de40 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioDevice.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioDevice.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; using System.Runtime.InteropServices; namespace Tizen.Multimedia diff --git a/src/Tizen.Multimedia/AudioManager/AudioDeviceConnectionChangedEventArgs.cs b/src/Tizen.Multimedia/AudioManager/AudioDeviceConnectionChangedEventArgs.cs index f6bc712..fcc415f 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioDeviceConnectionChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioDeviceConnectionChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/AudioDevicePropertyChangedEventArgs.cs b/src/Tizen.Multimedia/AudioManager/AudioDevicePropertyChangedEventArgs.cs index 46f8875..45edec3 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioDevicePropertyChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioDevicePropertyChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/AudioManager.cs b/src/Tizen.Multimedia/AudioManager/AudioManager.cs index 1cfce3f..d37d7d5 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioManager.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioManager.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; using System.Collections.Generic; namespace Tizen.Multimedia diff --git a/src/Tizen.Multimedia/AudioManager/AudioManagerEnumerations.cs b/src/Tizen.Multimedia/AudioManager/AudioManagerEnumerations.cs index 5c58726..34d06c9 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioManagerEnumerations.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioManagerEnumerations.cs @@ -1,4 +1,20 @@ -namespace Tizen.Multimedia + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +namespace Tizen.Multimedia { /// /// Enumeration for audio device options. diff --git a/src/Tizen.Multimedia/AudioManager/AudioManagerErrorFactory.cs b/src/Tizen.Multimedia/AudioManager/AudioManagerErrorFactory.cs index 3aeacda..8797d24 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioManagerErrorFactory.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioManagerErrorFactory.cs @@ -1,3 +1,19 @@ + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + using System; using Tizen.Internals.Errors; diff --git a/src/Tizen.Multimedia/AudioManager/AudioStreamPolicy.cs b/src/Tizen.Multimedia/AudioManager/AudioStreamPolicy.cs index e0c9b0c..fa61d94 100755 --- a/src/Tizen.Multimedia/AudioManager/AudioStreamPolicy.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioStreamPolicy.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/AudioVolume.cs b/src/Tizen.Multimedia/AudioManager/AudioVolume.cs index 07b0d43..0e0da46 100644 --- a/src/Tizen.Multimedia/AudioManager/AudioVolume.cs +++ b/src/Tizen.Multimedia/AudioManager/AudioVolume.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/FocusStateChangedEventArgs.cs b/src/Tizen.Multimedia/AudioManager/FocusStateChangedEventArgs.cs index a0aa765..c396b53 100644 --- a/src/Tizen.Multimedia/AudioManager/FocusStateChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioManager/FocusStateChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/MaxVolumeLevel.cs b/src/Tizen.Multimedia/AudioManager/MaxVolumeLevel.cs index 6737153..5e1ed72 100644 --- a/src/Tizen.Multimedia/AudioManager/MaxVolumeLevel.cs +++ b/src/Tizen.Multimedia/AudioManager/MaxVolumeLevel.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/StreamFocusStateChangedEventArgs.cs b/src/Tizen.Multimedia/AudioManager/StreamFocusStateChangedEventArgs.cs index 1f89d25..02eb70a 100644 --- a/src/Tizen.Multimedia/AudioManager/StreamFocusStateChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioManager/StreamFocusStateChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/VolumeChangedEventArgs.cs b/src/Tizen.Multimedia/AudioManager/VolumeChangedEventArgs.cs old mode 100644 new mode 100755 index f13b4cb..690c0a8 --- a/src/Tizen.Multimedia/AudioManager/VolumeChangedEventArgs.cs +++ b/src/Tizen.Multimedia/AudioManager/VolumeChangedEventArgs.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { diff --git a/src/Tizen.Multimedia/AudioManager/VolumeLevel.cs b/src/Tizen.Multimedia/AudioManager/VolumeLevel.cs index df3ada9..a4aeaed 100644 --- a/src/Tizen.Multimedia/AudioManager/VolumeLevel.cs +++ b/src/Tizen.Multimedia/AudioManager/VolumeLevel.cs @@ -1,4 +1,20 @@ -using System; + /* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; namespace Tizen.Multimedia { -- 2.7.4