26 lines
523 B
Text
26 lines
523 B
Text
// Copyright (C) 2017 The Android-x86 Open Source Project
|
|
// Copyright (C) 2025 KonstaKANG
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_library_shared {
|
|
name: "libffmpeg_utils",
|
|
vendor: true,
|
|
export_include_dirs: [
|
|
".",
|
|
],
|
|
srcs: [
|
|
"ffmpeg_hwaccel.c",
|
|
"ffmpeg_utils.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libavcodec",
|
|
"libavformat",
|
|
"libavutil",
|
|
"libcutils",
|
|
"liblog",
|
|
"libswresample",
|
|
"libswscale",
|
|
"libutils",
|
|
],
|
|
}
|