From 7811969a02ab039cd117b8dbd9d8f7faf5a824d3 Mon Sep 17 00:00:00 2001 From: Aryan Salmanpour Date: Mon, 26 Jan 2026 11:05:59 -0800 Subject: [PATCH] Update Copyright year (#222) [ROCm/rocjpeg commit: 06a08d3cb83b7e77555ff2baebedfe4e52fa5dbb] --- projects/rocjpeg/CMakeLists.txt | 2 +- projects/rocjpeg/LICENSE | 2 +- projects/rocjpeg/api/amd_detail/rocjpeg_api_trace.h | 2 +- projects/rocjpeg/api/rocjpeg/rocjpeg.h | 2 +- projects/rocjpeg/api/rocjpeg_version.h.in | 2 +- projects/rocjpeg/cmake/FindLibdrm_amdgpu.cmake | 2 +- projects/rocjpeg/cmake/FindLibva.cmake | 2 +- projects/rocjpeg/docs/conf.py | 2 +- projects/rocjpeg/rocJPEG-setup.py | 4 ++-- projects/rocjpeg/samples/jpegDecode/CMakeLists.txt | 2 +- projects/rocjpeg/samples/jpegDecode/jpegdecode.cpp | 2 +- projects/rocjpeg/samples/jpegDecodeBatched/CMakeLists.txt | 2 +- .../rocjpeg/samples/jpegDecodeBatched/jpegdecodebatched.cpp | 2 +- projects/rocjpeg/samples/jpegDecodePerf/CMakeLists.txt | 2 +- projects/rocjpeg/samples/jpegDecodePerf/jpegdecodeperf.cpp | 2 +- projects/rocjpeg/samples/rocjpeg_samples_utils.h | 2 +- .../rocjpeg/src/amd_detail/rocjpeg_api_dispatch_interface.cpp | 2 +- projects/rocjpeg/src/amd_detail/rocjpeg_api_trace.cpp | 2 +- projects/rocjpeg/src/rocjpeg_api.cpp | 2 +- projects/rocjpeg/src/rocjpeg_api_decoder_handle.h | 2 +- projects/rocjpeg/src/rocjpeg_api_stream_handle.h | 2 +- projects/rocjpeg/src/rocjpeg_commons.h | 2 +- projects/rocjpeg/src/rocjpeg_decoder.cpp | 2 +- projects/rocjpeg/src/rocjpeg_decoder.h | 2 +- projects/rocjpeg/src/rocjpeg_hip_kernels.cpp | 2 +- projects/rocjpeg/src/rocjpeg_hip_kernels.h | 2 +- projects/rocjpeg/src/rocjpeg_parser.cpp | 2 +- projects/rocjpeg/src/rocjpeg_parser.h | 2 +- projects/rocjpeg/src/rocjpeg_vaapi_decoder.cpp | 2 +- projects/rocjpeg/src/rocjpeg_vaapi_decoder.h | 2 +- projects/rocjpeg/test/CMakeLists.txt | 2 +- .../rocjpeg/test/rocjpeg_negative_api_tests/CMakeLists.txt | 2 +- .../rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.cpp | 2 +- .../rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.h | 2 +- .../test/rocjpeg_negative_api_tests/rocjpegnegativetest.cpp | 2 +- 35 files changed, 36 insertions(+), 36 deletions(-) diff --git a/projects/rocjpeg/CMakeLists.txt b/projects/rocjpeg/CMakeLists.txt index 89c46f13b6..bfc1ef8332 100644 --- a/projects/rocjpeg/CMakeLists.txt +++ b/projects/rocjpeg/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/LICENSE b/projects/rocjpeg/LICENSE index f9fc664282..9bf2cf47bd 100644 --- a/projects/rocjpeg/LICENSE +++ b/projects/rocjpeg/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 - 2025 ROCm Software Platform +Copyright (c) 2024 - 2026 ROCm Software Platform Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/api/amd_detail/rocjpeg_api_trace.h b/projects/rocjpeg/api/amd_detail/rocjpeg_api_trace.h index 49d68fc2d0..a89815039d 100644 --- a/projects/rocjpeg/api/amd_detail/rocjpeg_api_trace.h +++ b/projects/rocjpeg/api/amd_detail/rocjpeg_api_trace.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/api/rocjpeg/rocjpeg.h b/projects/rocjpeg/api/rocjpeg/rocjpeg.h index cf491c8b1d..7939e07434 100644 --- a/projects/rocjpeg/api/rocjpeg/rocjpeg.h +++ b/projects/rocjpeg/api/rocjpeg/rocjpeg.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +/* Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/api/rocjpeg_version.h.in b/projects/rocjpeg/api/rocjpeg_version.h.in index ea07eb9ff8..b146ae52bd 100644 --- a/projects/rocjpeg/api/rocjpeg_version.h.in +++ b/projects/rocjpeg/api/rocjpeg_version.h.in @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/cmake/FindLibdrm_amdgpu.cmake b/projects/rocjpeg/cmake/FindLibdrm_amdgpu.cmake index d5a52f7f04..b943604bcc 100644 --- a/projects/rocjpeg/cmake/FindLibdrm_amdgpu.cmake +++ b/projects/rocjpeg/cmake/FindLibdrm_amdgpu.cmake @@ -1,5 +1,5 @@ ################################################################################ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/cmake/FindLibva.cmake b/projects/rocjpeg/cmake/FindLibva.cmake index f85fd48359..88cea8a28b 100644 --- a/projects/rocjpeg/cmake/FindLibva.cmake +++ b/projects/rocjpeg/cmake/FindLibva.cmake @@ -1,5 +1,5 @@ ################################################################################ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/docs/conf.py b/projects/rocjpeg/docs/conf.py index eeae75e34d..a913fac245 100644 --- a/projects/rocjpeg/docs/conf.py +++ b/projects/rocjpeg/docs/conf.py @@ -19,7 +19,7 @@ left_nav_title = f"rocJPEG {version_number} Documentation" # for PDF output on Read the Docs project = "rocJPEG Documentation" author = "Advanced Micro Devices, Inc." -copyright = "Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved." +copyright = "Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved." version = version_number release = version_number diff --git a/projects/rocjpeg/rocJPEG-setup.py b/projects/rocjpeg/rocJPEG-setup.py index 4fe00ece06..8428abd217 100644 --- a/projects/rocjpeg/rocJPEG-setup.py +++ b/projects/rocjpeg/rocJPEG-setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -28,7 +28,7 @@ if sys.version_info[0] < 3: else: import subprocess -__copyright__ = "Copyright (c) 2024 - 2025, AMD ROCm rocJPEG" +__copyright__ = "Copyright (c) 2024 - 2026, AMD ROCm rocJPEG" __version__ = "2.4.0" __email__ = "mivisionx.support@amd.com" __status__ = "Shipping" diff --git a/projects/rocjpeg/samples/jpegDecode/CMakeLists.txt b/projects/rocjpeg/samples/jpegDecode/CMakeLists.txt index 2161d3d59b..de427e45f8 100644 --- a/projects/rocjpeg/samples/jpegDecode/CMakeLists.txt +++ b/projects/rocjpeg/samples/jpegDecode/CMakeLists.txt @@ -1,5 +1,5 @@ ################################################################################ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/samples/jpegDecode/jpegdecode.cpp b/projects/rocjpeg/samples/jpegDecode/jpegdecode.cpp index b1d9567366..398f36e79c 100644 --- a/projects/rocjpeg/samples/jpegDecode/jpegdecode.cpp +++ b/projects/rocjpeg/samples/jpegDecode/jpegdecode.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/samples/jpegDecodeBatched/CMakeLists.txt b/projects/rocjpeg/samples/jpegDecodeBatched/CMakeLists.txt index fbcb2e3604..f9d636ad59 100644 --- a/projects/rocjpeg/samples/jpegDecodeBatched/CMakeLists.txt +++ b/projects/rocjpeg/samples/jpegDecodeBatched/CMakeLists.txt @@ -1,5 +1,5 @@ ################################################################################ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/samples/jpegDecodeBatched/jpegdecodebatched.cpp b/projects/rocjpeg/samples/jpegDecodeBatched/jpegdecodebatched.cpp index 5121b3200f..631d1815be 100644 --- a/projects/rocjpeg/samples/jpegDecodeBatched/jpegdecodebatched.cpp +++ b/projects/rocjpeg/samples/jpegDecodeBatched/jpegdecodebatched.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/samples/jpegDecodePerf/CMakeLists.txt b/projects/rocjpeg/samples/jpegDecodePerf/CMakeLists.txt index 4abaf56988..d87d3317cf 100644 --- a/projects/rocjpeg/samples/jpegDecodePerf/CMakeLists.txt +++ b/projects/rocjpeg/samples/jpegDecodePerf/CMakeLists.txt @@ -1,5 +1,5 @@ ################################################################################ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/samples/jpegDecodePerf/jpegdecodeperf.cpp b/projects/rocjpeg/samples/jpegDecodePerf/jpegdecodeperf.cpp index 5f71fe3811..3a956a01cc 100644 --- a/projects/rocjpeg/samples/jpegDecodePerf/jpegdecodeperf.cpp +++ b/projects/rocjpeg/samples/jpegDecodePerf/jpegdecodeperf.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/samples/rocjpeg_samples_utils.h b/projects/rocjpeg/samples/rocjpeg_samples_utils.h index 6fe4d0afa1..22a184642d 100644 --- a/projects/rocjpeg/samples/rocjpeg_samples_utils.h +++ b/projects/rocjpeg/samples/rocjpeg_samples_utils.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/amd_detail/rocjpeg_api_dispatch_interface.cpp b/projects/rocjpeg/src/amd_detail/rocjpeg_api_dispatch_interface.cpp index 25890871d4..b0a433b922 100644 --- a/projects/rocjpeg/src/amd_detail/rocjpeg_api_dispatch_interface.cpp +++ b/projects/rocjpeg/src/amd_detail/rocjpeg_api_dispatch_interface.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/amd_detail/rocjpeg_api_trace.cpp b/projects/rocjpeg/src/amd_detail/rocjpeg_api_trace.cpp index 0393ca28c8..2cc19ef1a5 100644 --- a/projects/rocjpeg/src/amd_detail/rocjpeg_api_trace.cpp +++ b/projects/rocjpeg/src/amd_detail/rocjpeg_api_trace.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_api.cpp b/projects/rocjpeg/src/rocjpeg_api.cpp index ad16919192..3b28e65d3b 100644 --- a/projects/rocjpeg/src/rocjpeg_api.cpp +++ b/projects/rocjpeg/src/rocjpeg_api.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_api_decoder_handle.h b/projects/rocjpeg/src/rocjpeg_api_decoder_handle.h index 20c41dd076..5d2cdd678b 100644 --- a/projects/rocjpeg/src/rocjpeg_api_decoder_handle.h +++ b/projects/rocjpeg/src/rocjpeg_api_decoder_handle.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_api_stream_handle.h b/projects/rocjpeg/src/rocjpeg_api_stream_handle.h index 77732b68af..60a30d6ce3 100644 --- a/projects/rocjpeg/src/rocjpeg_api_stream_handle.h +++ b/projects/rocjpeg/src/rocjpeg_api_stream_handle.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_commons.h b/projects/rocjpeg/src/rocjpeg_commons.h index c25025c680..978f07fe5a 100644 --- a/projects/rocjpeg/src/rocjpeg_commons.h +++ b/projects/rocjpeg/src/rocjpeg_commons.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_decoder.cpp b/projects/rocjpeg/src/rocjpeg_decoder.cpp index 002deee736..352d01a8b8 100644 --- a/projects/rocjpeg/src/rocjpeg_decoder.cpp +++ b/projects/rocjpeg/src/rocjpeg_decoder.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_decoder.h b/projects/rocjpeg/src/rocjpeg_decoder.h index a1a1f2a827..675e790c8b 100644 --- a/projects/rocjpeg/src/rocjpeg_decoder.h +++ b/projects/rocjpeg/src/rocjpeg_decoder.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_hip_kernels.cpp b/projects/rocjpeg/src/rocjpeg_hip_kernels.cpp index 67fd1a0113..81a86c53c0 100644 --- a/projects/rocjpeg/src/rocjpeg_hip_kernels.cpp +++ b/projects/rocjpeg/src/rocjpeg_hip_kernels.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_hip_kernels.h b/projects/rocjpeg/src/rocjpeg_hip_kernels.h index 8e7b625365..5df1fac047 100644 --- a/projects/rocjpeg/src/rocjpeg_hip_kernels.h +++ b/projects/rocjpeg/src/rocjpeg_hip_kernels.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_parser.cpp b/projects/rocjpeg/src/rocjpeg_parser.cpp index e79a589a24..81a5e2d275 100644 --- a/projects/rocjpeg/src/rocjpeg_parser.cpp +++ b/projects/rocjpeg/src/rocjpeg_parser.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_parser.h b/projects/rocjpeg/src/rocjpeg_parser.h index 1413f73b8c..a35b3d355a 100644 --- a/projects/rocjpeg/src/rocjpeg_parser.h +++ b/projects/rocjpeg/src/rocjpeg_parser.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_vaapi_decoder.cpp b/projects/rocjpeg/src/rocjpeg_vaapi_decoder.cpp index 07db79da73..005d6d7a17 100644 --- a/projects/rocjpeg/src/rocjpeg_vaapi_decoder.cpp +++ b/projects/rocjpeg/src/rocjpeg_vaapi_decoder.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/src/rocjpeg_vaapi_decoder.h b/projects/rocjpeg/src/rocjpeg_vaapi_decoder.h index 019311bbdb..643c6f7271 100644 --- a/projects/rocjpeg/src/rocjpeg_vaapi_decoder.h +++ b/projects/rocjpeg/src/rocjpeg_vaapi_decoder.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/test/CMakeLists.txt b/projects/rocjpeg/test/CMakeLists.txt index a37d9021a3..c52144a6e3 100644 --- a/projects/rocjpeg/test/CMakeLists.txt +++ b/projects/rocjpeg/test/CMakeLists.txt @@ -1,5 +1,5 @@ # ############################################################################## -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/test/rocjpeg_negative_api_tests/CMakeLists.txt b/projects/rocjpeg/test/rocjpeg_negative_api_tests/CMakeLists.txt index 819ecc9850..d183df9120 100644 --- a/projects/rocjpeg/test/rocjpeg_negative_api_tests/CMakeLists.txt +++ b/projects/rocjpeg/test/rocjpeg_negative_api_tests/CMakeLists.txt @@ -1,5 +1,5 @@ ################################################################################ -# Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. +# Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.cpp b/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.cpp index 6884e7b53d..84e869d13e 100644 --- a/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.cpp +++ b/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.cpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.h b/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.h index 09face55f4..13461189e7 100644 --- a/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.h +++ b/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpeg_api_negative_tests.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpegnegativetest.cpp b/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpegnegativetest.cpp index 16a1b7ac25..8ed3ebb57a 100644 --- a/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpegnegativetest.cpp +++ b/projects/rocjpeg/test/rocjpeg_negative_api_tests/rocjpegnegativetest.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) 2024 - 2026 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal