19 Star 3 Fork 284

histreamer / multimedia_histreamer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.gni 3.93 KB
一键复制 编辑 原始数据 按行查看 历史
shuboxu 提交于 2023-08-24 06:14 . update engine/plugin/BUILD.gn.
# Copyright (c) 2021-2021 Huawei Device Co., Ltd.
# 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("//build/ohos.gni")
declare_args() {
histreamer_root_dir = "//foundation/multimedia/histreamer"
# build histreamer plugin feature ability
# only for small and std (mini device does not support dynamic libraries)
histreamer_enable_plugin_ffmpeg_adapter = false
# hdi codec adapter, only for std device (Omx has not been implemented)
histreamer_enable_plugin_codec_adapter = false
# only tested on std device
histreamer_enable_plugin_http_source = false
# depends on lite audio hdi interface (small device)
histreamer_enable_plugin_hdi_adapter = false
# depends on lite media api
histreamer_enable_plugin_stream_source = false
# only support mini device bes2600 tech (L0)
histreamer_enable_plugin_lite_aac_decoder = false
histreamer_enable_plugin_http_lite_source = false
# no external dependence
histreamer_enable_plugin_file_source = false
histreamer_enable_plugin_file_fd_source = false
histreamer_enable_plugin_file_fd_sink = false
histreamer_enable_plugin_aac_demuxer = false
histreamer_enable_plugin_wav_demuxer = false
# no release (https://gitee.com/histreamer/minimp3)
histreamer_enable_plugin_minimp3_adapter = false
histreamer_enable_plugin_minimp4_demuxer = false
# depends on std media api
histreamer_enable_plugin_std_stream_source = false
# depends on std audio service
histreamer_enable_plugin_std_audio_capture = false
histreamer_enable_plugin_audio_server_sink = false
# depends on std surface
histreamer_enable_plugin_std_video_surface_sink = false
histreamer_enable_plugin_std_video_capture = false
histreamer_enable_plugin_avs3_audio_decoder = false
histreamer_enable_recorder = false
histreamer_enable_video = false
histreamer_enable_avs3da = false
# configuration for histreamer created thread's stack size.
# 0 means using system default thread stack size, other positive values will be accepted.
config_ohos_histreamer_stack_size = 0
hst_is_lite_sys = false
hst_is_standard_sys = false
hst_is_small_sys = false
hst_is_mini_sys = false
}
if (!defined(ohos_lite) || !ohos_lite) {
hst_is_lite_sys = false
hst_is_standard_sys = true
} else {
hst_is_lite_sys = true
if (ohos_kernel_type == "liteos_m") {
hst_is_mini_sys = true
} else {
hst_is_small_sys = true
}
}
if (hst_is_standard_sys) {
histreamer_enable_plugin_file_source = true
histreamer_enable_plugin_file_fd_source = true
histreamer_enable_plugin_ffmpeg_adapter = true
histreamer_enable_plugin_http_source = true
histreamer_enable_plugin_audio_server_sink = true
histreamer_enable_recorder = true
histreamer_enable_plugin_file_fd_sink = true
histreamer_enable_plugin_std_audio_capture = true
histreamer_enable_plugin_std_stream_source = true
histreamer_enable_video = true
histreamer_enable_plugin_std_video_surface_sink = true
histreamer_enable_plugin_codec_adapter = true
}
if (hst_is_small_sys) {
histreamer_enable_plugin_file_source = true
histreamer_enable_plugin_file_fd_source = true
histreamer_enable_plugin_ffmpeg_adapter = true
histreamer_enable_plugin_http_source = true
histreamer_enable_plugin_hdi_adapter = true
}
if (hst_is_mini_sys) {
histreamer_enable_plugin_file_source = true
histreamer_enable_plugin_file_fd_source = true
histreamer_enable_plugin_ffmpeg_adapter = true
histreamer_enable_plugin_http_source = true
histreamer_enable_plugin_hdi_adapter = true
}
1
https://gitee.com/histreamer/multimedia_histreamer.git
git@gitee.com:histreamer/multimedia_histreamer.git
histreamer
multimedia_histreamer
multimedia_histreamer
master

搜索帮助