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

Fallback case for avformat_open_input

rdb 13 лет назад
Родитель
Сommit
8ce7ef28d8
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      panda/src/movies/ffmpegVirtualFile.cxx

+ 4 - 0
panda/src/movies/ffmpegVirtualFile.cxx

@@ -196,7 +196,11 @@ open_subfile(const SubfileInfo &info) {
 void FfmpegVirtualFile::
 close() {
   if (_format_context != NULL) {
+#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 17, 0)
     avformat_close_input(&_format_context);
+#else
+    av_close_input_file(_format_context);
+#endif
     _format_context = NULL;
   }