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_decoder/raw:media_plugin_RawAudioDecoder", 25 "ffmpeg_adapter/audio_encoder:media_plugin_FFmpegAudioEncoders", 26 "ffmpeg_adapter/audio_encoder/g711mu:media_plugin_G711muAudioEncoder", 27 "ffmpeg_adapter/audio_encoder/lbvc:media_plugin_LbvcAudioEncoder", 28 "ffmpeg_adapter/audio_encoder/mp3:media_plugin_Mp3AudioEncoder", 29 "sink:media_plugin_AudioServerSink", 30 "source:media_plugin_DataStreamSource", 31 "source:media_plugin_FileFdSource", 32 "source:media_plugin_FileSource", 33 "source/http_source:media_plugin_HttpSource_static", 34 ] 35 if (av_codec_support_libcurl) { 36 deps += [ "source/http_source:media_plugin_HttpSource" ] 37 } 38 if (av_codec_enable_codec_cook) { 39 deps += 40 [ "ffmpeg_adapter/audio_decoder/cook:media_plugin_CookAudioDecoder" ] 41 } 42 if (av_codec_enable_codec_ac3) { 43 deps += [ "ffmpeg_adapter/audio_decoder/ac3:media_plugin_Ac3AudioDecoder" ] 44 } 45} 46