From 963d4e8a60311794435824829b013505b80adc92 Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sun, 3 Oct 2021 22:19:04 +0900 Subject: Fix license information Signed-off-by: Naoto Yamaguchi --- ImageButton.qml | 2 ++ README.md | 12 ++++++++++++ ToggleButton.qml | 2 ++ main.cpp | 18 ++++++++++++++++++ mediaplay.pro | 2 ++ mediaplay.qml | 19 +++++++++++++++++++ playlistwithmetadata.cpp | 2 ++ playlistwithmetadata.h | 2 ++ 8 files changed, 59 insertions(+) create mode 100644 README.md diff --git a/ImageButton.qml b/ImageButton.qml index c8d05b1..47d4424 100644 --- a/ImageButton.qml +++ b/ImageButton.qml @@ -1,6 +1,8 @@ /* * Copyright (C) 2016 The Qt Company Ltd. * + * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/README.md b/README.md new file mode 100644 index 0000000..9f86b46 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Momiplayer +## AGL sample media player application for container integration + +### Overview + +Momiplayer is AGL sample media player application for container integration. +This source code is fork from ces2017 version of AGL mediaplayer. +Original source code is contributed by the Qt Company Ltd. + +This application adjust to full HD resolutions (1920x1080). This change work by Yoshito Momiyama. + + diff --git a/ToggleButton.qml b/ToggleButton.qml index 4a9fc72..c11b01f 100644 --- a/ToggleButton.qml +++ b/ToggleButton.qml @@ -1,6 +1,8 @@ /* * Copyright (C) 2016 The Qt Company Ltd. * + * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/main.cpp b/main.cpp index 6f9744d..fc5ad85 100644 --- a/main.cpp +++ b/main.cpp @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 The Qt Company Ltd. + * + * SPDX-License-Identifier: Apache-2.0 + * + * 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. + */ + #include #include #include diff --git a/mediaplay.pro b/mediaplay.pro index e70e45a..0ac64ca 100644 --- a/mediaplay.pro +++ b/mediaplay.pro @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 + QT += quick quickcontrols2 multimedia CONFIG += c++11 diff --git a/mediaplay.qml b/mediaplay.qml index b197633..8945b57 100644 --- a/mediaplay.qml +++ b/mediaplay.qml @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2016 The Qt Company Ltd. + * Copyright (C) 2019 Yoshito Momiyama + * + * SPDX-License-Identifier: Apache-2.0 + * + * 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. + */ + import QtQuick 2.6 import QtQuick.Window 2.12 import QtQuick.Layouts 1.1 diff --git a/playlistwithmetadata.cpp b/playlistwithmetadata.cpp index be6d9a1..d1948b9 100644 --- a/playlistwithmetadata.cpp +++ b/playlistwithmetadata.cpp @@ -1,6 +1,8 @@ /* * Copyright (C) 2016 The Qt Company Ltd. * + * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/playlistwithmetadata.h b/playlistwithmetadata.h index 74cf6f5..e52b193 100644 --- a/playlistwithmetadata.h +++ b/playlistwithmetadata.h @@ -1,6 +1,8 @@ /* * Copyright (C) 2016 The Qt Company Ltd. * + * SPDX-License-Identifier: Apache-2.0 + * * 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 -- cgit 1.2.3-korg