[vlc-commits] vda: fix a warning on unused variable

Steve Lhomme git at videolan.org
Fri Jun 5 22:45:59 CEST 2015


vlc | branch: master | Steve Lhomme <robux4 at gmail.com> | Tue Jun  2 15:43:35 2015 +0200| [031caeb210681d532541790413d8b53552f0b1db] | committer: Jean-Baptiste Kempf

vda: fix a warning on unused variable

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=031caeb210681d532541790413d8b53552f0b1db
---

 modules/codec/avcodec/vda.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/codec/avcodec/vda.c b/modules/codec/avcodec/vda.c
index 6f8105d..3a425b1 100644
--- a/modules/codec/avcodec/vda.c
+++ b/modules/codec/avcodec/vda.c
@@ -330,6 +330,7 @@ static int Open( vlc_va_t *va, AVCodecContext *avctx,
 
     (void) fmt;
     (void) avctx;
+    (void) p_sys;
 
     return VLC_SUCCESS;
 }



More information about the vlc-commits mailing list