summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dec_video.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/dec_video.c b/dec_video.c
index fde8eed6b9..a2e2dbe857 100644
--- a/dec_video.c
+++ b/dec_video.c
@@ -144,14 +144,17 @@ int uninit_video(sh_video_t *sh_video){
if(!sh_video->inited) return;
printf("uninit video: %d \n",sh_video->codec->driver);
switch(sh_video->codec->driver){
+#ifdef USE_LIBAVCODEC
case VFM_FFMPEG:
if (avcodec_close(&lavc_context) < 0)
mp_msg(MSGT_DECVIDEO,MSGL_ERR, "could not close codec\n");
break;
+#endif
+#ifndef USE_DIRECTSHOW
case VFM_DSHOW: // Win32/DirectShow
DS_VideoDecoder_Close();
break;
-
+#endif
case VFM_MPEG:
mpeg2_free_image_buffers (picture);
break;