Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 0eec817

Browse files
committed
Update copyright and license header as per Intel guide
Tracked-On: OAM-105125 Signed-off-by: Ratnesh Kumar Rai <[email protected]>
1 parent ccc3a2c commit 0eec817

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+513
-73
lines changed

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (C) 2019-2022 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
cmake_minimum_required (VERSION 3.6)
25
project (vhal-client VERSION 0.1 DESCRIPTION "VHAL Client library written in C++17 for Touch, Joystick, GPS, Audio, Camera and Sensor, " LANGUAGES CXX)
36

examples/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (C) 2019-2022 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
14
add_executable (camera_socket_client camera_socket_client.cc)
25
target_link_libraries (camera_socket_client LINK_PUBLIC ${PROJECT_NAME})
36

examples/audio_playback_client.cc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/**
2+
*
3+
* Copyright (c) 2021-2022 Intel Corporation
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
* SPDX-License-Identifier: Apache-2.0
18+
*/
19+
120
#include "tcp_stream_socket_client.h"
221
#include "audio_source.h"
322
#include "android_audio_core.h"

examples/audio_record_client.cc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/**
2+
*
3+
* Copyright (c) 2021-2022 Intel Corporation
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
* SPDX-License-Identifier: Apache-2.0
18+
*/
19+
120
#include "tcp_stream_socket_client.h"
221
#include "audio_sink.h"
322
#include "android_audio_core.h"

examples/camera_client.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
* @version 1.0
66
* @date 2021-04-27
77
*
8-
* Copyright (c) 2021 Intel Corporation
8+
* Copyright (c) 2021-2022 Intel Corporation
9+
*
910
* Licensed under the Apache License, Version 2.0 (the "License");
1011
* you may not use this file except in compliance with the License.
1112
* You may obtain a copy of the License at
@@ -18,6 +19,7 @@
1819
* See the License for the specific language governing permissions and
1920
* limitations under the License.
2021
*
22+
* SPDX-License-Identifier: Apache-2.0
2123
*/
2224

2325
#include "video_sink.h"

examples/camera_client_app_template.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
/**
2-
* @file camera_client.cc
2+
* @file camera_client_app_template.cc
33
* @author Shakthi Prashanth M ([email protected])
44
* @brief
55
* @version 1.0
66
* @date 2021-04-27
77
*
8-
* Copyright (c) 2021 Intel Corporation
8+
* Copyright (c) 2021-2022 Intel Corporation
9+
*
910
* Licensed under the Apache License, Version 2.0 (the "License");
1011
* you may not use this file except in compliance with the License.
1112
* You may obtain a copy of the License at
@@ -18,6 +19,7 @@
1819
* See the License for the specific language governing permissions and
1920
* limitations under the License.
2021
*
22+
* SPDX-License-Identifier: Apache-2.0
2123
*/
2224

2325
#include "unix_stream_socket_client.h"

examples/camera_socket_client.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* @version 1.0
77
* @date 2021-04-27
88
*
9-
* Copyright (c) 2021 Intel Corporation
9+
* Copyright (c) 2021-2022 Intel Corporation
10+
*
1011
* Licensed under the Apache License, Version 2.0 (the "License");
1112
* you may not use this file except in compliance with the License.
1213
* You may obtain a copy of the License at
@@ -19,6 +20,7 @@
1920
* See the License for the specific language governing permissions and
2021
* limitations under the License.
2122
*
23+
* SPDX-License-Identifier: Apache-2.0
2224
*/
2325

2426
#include "unix_stream_socket_client.h"

examples/command_channel_client.cc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/**
2+
*
3+
* Copyright (c) 2021-2022 Intel Corporation
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
* SPDX-License-Identifier: Apache-2.0
18+
*/
19+
120
#include "tcp_stream_socket_client.h"
221
#include "command_channel_interface.h"
322
#include <array>

examples/host_camera_server.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
* @version 1.0
66
* @date 2021-04-30
77
*
8-
* Copyright (c) 2021 Intel Corporation
8+
* Copyright (c) 2021-2022 Intel Corporation
9+
*
910
* Licensed under the Apache License, Version 2.0 (the "License");
1011
* you may not use this file except in compliance with the License.
1112
* You may obtain a copy of the License at
@@ -18,6 +19,7 @@
1819
* See the License for the specific language governing permissions and
1920
* limitations under the License.
2021
*
22+
* SPDX-License-Identifier: Apache-2.0
2123
*/
2224

2325
#include "vsock_stream_socket_client.h"

examples/hwc_example.cpp

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/**
2+
*
3+
* Copyright (c) 2021-2022 Intel Corporation
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
* SPDX-License-Identifier: Apache-2.0
18+
*/
19+
120
#include "hwc_vhal.h"
221
#include <getopt.h>
322
#include <iostream>

0 commit comments

Comments
 (0)