Просмотр исходного кода

codec: Plug GPU decoder memory leak

ameerj 4 лет назад
Родитель
Сommit
15f9472b15
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/video_core/command_classes/codecs/codec.cpp

+ 2 - 0
src/video_core/command_classes/codecs/codec.cpp

@@ -98,6 +98,8 @@ bool Codec::CreateGpuAvDevice() {
             LOG_DEBUG(Service_NVDRV, "{} explicitly unsupported", av_hwdevice_get_type_name(type));
             continue;
         }
+        // Avoid memory leak from not cleaning up after av_hwdevice_ctx_create
+        av_buffer_unref(&av_gpu_decoder);
         const int hwdevice_res = av_hwdevice_ctx_create(&av_gpu_decoder, type, nullptr, nullptr, 0);
         if (hwdevice_res < 0) {
             LOG_DEBUG(Service_NVDRV, "{} av_hwdevice_ctx_create failed {}",