Home
last modified time | relevance | path

Searched refs:FindAudioDecoder (Results 1 – 21 of 21) sorted by relevance

/foundation/multimedia/player_framework/services/services/avcodeclist/ipc/
Davcodeclist_service_stub.cpp56 codecListFuncs_[FIND_AUDIO_DECODER] = &AVCodecListServiceStub::FindAudioDecoder; in Init()
113 std::string AVCodecListServiceStub::FindAudioDecoder(const Format &format) in FindAudioDecoder() function in OHOS::Media::AVCodecListServiceStub
117 return codecListServer_->FindAudioDecoder(format); in FindAudioDecoder()
151 int32_t AVCodecListServiceStub::FindAudioDecoder(MessageParcel &data, MessageParcel &reply) in FindAudioDecoder() function in OHOS::Media::AVCodecListServiceStub
155 reply.WriteString(FindAudioDecoder(format)); in FindAudioDecoder()
Davcodeclist_service_stub.h37 std::string FindAudioDecoder(const Format &format) override;
47 int32_t FindAudioDecoder(MessageParcel &data, MessageParcel &reply);
Di_standard_avcodeclist_service.h33 virtual std::string FindAudioDecoder(const Format &format) = 0;
Davcodeclist_service_proxy.h33 std::string FindAudioDecoder(const Format &format) override;
Davcodeclist_service_proxy.cpp68 std::string AVCodecListServiceProxy::FindAudioDecoder(const Format &format) in FindAudioDecoder() function in OHOS::Media::AVCodecListServiceProxy
/foundation/multimedia/player_framework/services/services/avcodeclist/client/
Davcodeclist_client.cpp71 std::string AVCodecListClient::FindAudioDecoder(const Format &format) in FindAudioDecoder() function in OHOS::Media::AVCodecListClient
75 return codecListProxy_->FindAudioDecoder(format); in FindAudioDecoder()
Davcodeclist_client.h34 std::string FindAudioDecoder(const Format &format) override;
/foundation/multimedia/player_framework/services/services/avcodeclist/server/
Davcodeclist_server.cpp77 std::string AVCodecListServer::FindAudioDecoder(const Format &format) in FindAudioDecoder() function in OHOS::Media::AVCodecListServer
82 return codecListEngine_->FindAudioDecoder(format); in FindAudioDecoder()
Davcodeclist_server.h34 std::string FindAudioDecoder(const Format &format) override;
/foundation/multimedia/player_framework/services/include/
Di_avcodeclist_service.h30 virtual std::string FindAudioDecoder(const Format &format) = 0;
/foundation/multimedia/player_framework/services/services/engine_intf/
Di_avcodeclist_engine.h36 virtual std::string FindAudioDecoder(const Format &format) = 0;
/foundation/multimedia/player_framework/interfaces/inner_api/native/
Davcodec_list.h54 virtual std::string FindAudioDecoder(const Format &format) = 0;
/foundation/multimedia/player_framework/test/unittest/avcodec_test/native/avcodec_list/
Davcodec_list_native_mock.cpp42 std::string AVCodecListNativeMock::FindAudioDecoder(std::shared_ptr<FormatMock> format) const in FindAudioDecoder() function in OHOS::Media::AVCodecListNativeMock
47 ret = avCodecList_->FindAudioDecoder(fmt->GetFormat()); in FindAudioDecoder()
Davcodec_list_native_mock.h30 std::string FindAudioDecoder(std::shared_ptr<FormatMock> format) const override;
/foundation/multimedia/player_framework/services/engine/common/avcodeclist/
Davcodeclist_engine_gst_impl.h31 std::string FindAudioDecoder(const Format &format) override;
Davcodeclist_engine_gst_impl.cpp194 std::string AVCodecListEngineGstImpl::FindAudioDecoder(const Format &format) in FindAudioDecoder() function in OHOS::Media::AVCodecListEngineGstImpl
/foundation/multimedia/player_framework/frameworks/native/avcodeclist/
Davcodec_list_impl.cpp70 std::string AVCodecListImpl::FindAudioDecoder(const Format &format) in FindAudioDecoder() function in OHOS::Media::AVCodecListImpl
73 return codecListService_->FindAudioDecoder(format); in FindAudioDecoder()
Davcodec_list_impl.h32 std::string FindAudioDecoder(const Format &format) override;
/foundation/multimedia/player_framework/services/engine/gstreamer/avcodec/
Davcodec_engine_gst_impl.cpp292 pluginName = codecList->FindAudioDecoder(format); in HandleMimeType()
/foundation/multimedia/player_framework/test/unittest/avcodec_test/
Davcodec_mock.h123 virtual std::string FindAudioDecoder(std::shared_ptr<FormatMock> format) const = 0;
/foundation/multimedia/player_framework/test/unittest/avcodec_test/avcodec_list_test/
Davcodec_list_unit_test.cpp105 codecName = avCodecList_->FindAudioDecoder(format);