1# Copyright (C) 2023 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/ohos.gni") 15import("//foundation/multimedia/av_codec/config.gni") 16 17group("av_codec_media_engine_plugins") { 18 deps = [ 19 "ffmpeg_adapter:media_plugin_FFmpegDemuxer", 20 "ffmpeg_adapter:media_plugin_FFmpegMuxer", 21 "ffmpeg_adapter/audio_decoder:media_plugin_FFmpegAudioDecoders", 22 "ffmpeg_adapter/audio_decoder/g711mu:media_plugin_G711muAudioDecoder", 23 "ffmpeg_adapter/audio_decoder/lbvc:media_plugin_LbvcAudioDecoder", 24 "ffmpeg_adapter/audio_encoder:media_plugin_FFmpegAudioEncoders", 25 "ffmpeg_adapter/audio_encoder/g711mu:media_plugin_G711muAudioEncoder", 26 "ffmpeg_adapter/audio_encoder/lbvc:media_plugin_LbvcAudioEncoder", 27 "ffmpeg_adapter/audio_encoder/mp3:media_plugin_Mp3AudioEncoder", 28 "sink:media_plugin_AudioServerSink", 29 "source:media_plugin_DataStreamSource", 30 "source:media_plugin_FileFdSource", 31 "source:media_plugin_FileSource", 32 "source/http_source:media_plugin_HttpSource_static", 33 ] 34 if (av_codec_support_libcurl) { 35 deps += [ "source/http_source:media_plugin_HttpSource" ] 36 } 37} 38