[vlc-commits] commit: VAAPI: build fix (Pierre Ynard )

git at videolan.org git at videolan.org
Sat Oct 30 22:14:45 CEST 2010


vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Sat Oct 30 22:14:11 2010 +0200| [c4c29a8b02882a7ec76a6985109116dabd96010a] | committer: Pierre Ynard 

VAAPI: build fix

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

 modules/codec/avcodec/vaapi.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/codec/avcodec/vaapi.c b/modules/codec/avcodec/vaapi.c
index 7936953..fe88a93 100644
--- a/modules/codec/avcodec/vaapi.c
+++ b/modules/codec/avcodec/vaapi.c
@@ -498,8 +498,9 @@ vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
     return &p_va->va;
 }
 #else
-vlc_va_t *vlc_va_NewVaapi( int i_codec_id )
+vlc_va_t *vlc_va_NewVaapi( vlc_object_t *obj, int i_codec_id )
 {
+    VLC_UNUSED( obj );
     VLC_UNUSED( i_codec_id );
     return NULL;
 }



More information about the vlc-commits mailing list