Add implementation name for libaom decoder

Change-Id: I96d07727ef41c7f2ab0e35d89415c5a8ec4393b4
Bug: None
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176940
Reviewed-by: Marco Paniconi <marpan@webrtc.org>
Commit-Queue: Jerome Jiang <jianj@google.com>
Cr-Commit-Position: refs/heads/master@{#31495}
This commit is contained in:
Jerome Jiang
2020-06-10 16:30:30 -07:00
committed by Commit Bot
parent 1e79c9ba9c
commit e366045375

View File

@ -53,6 +53,8 @@ class LibaomAv1Decoder final : public VideoDecoder {
int32_t Release() override;
const char* ImplementationName() const override;
private:
aom_codec_ctx_t context_;
bool inited_;
@ -180,6 +182,10 @@ int32_t LibaomAv1Decoder::Release() {
return WEBRTC_VIDEO_CODEC_OK;
}
const char* LibaomAv1Decoder::ImplementationName() const {
return "libaom";
}
} // namespace
const bool kIsLibaomAv1DecoderSupported = true;