summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/h265/decode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/h265/decode.c b/modules/h265/decode.c
index ec823b4..08c1978 100644
--- a/modules/h265/decode.c
+++ b/modules/h265/decode.c
@@ -70,7 +70,8 @@ int h265_decode_update(struct viddec_state **vdsp, const struct vidcodec *vc,
if (vds)
return 0;
- codec = avcodec_find_decoder(AV_CODEC_ID_H265);
+ /* HEVC = H.265 */
+ codec = avcodec_find_decoder(AV_CODEC_ID_HEVC);
if (!codec) {
warning("h265: could not find H265 decoder\n");
return ENOSYS;