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:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user