[vlc-commits] vaapi: Use vaDeriveImage instead of vaGetImage if available
Timo Rothenpieler
git at videolan.org
Tue Jan 22 02:56:55 CET 2013
vlc/vlc-2.0 | branch: master | Timo Rothenpieler <timo at rothenpieler.org> | Tue Jan 22 02:46:43 2013 +0100| [e967b401ae91a8dd614e4d7023f965d647ca4c34] | committer: Rafaël Carré
vaapi: Use vaDeriveImage instead of vaGetImage if available
Signed-off-by: Rafaël Carré <funman at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=e967b401ae91a8dd614e4d7023f965d647ca4c34
---
modules/codec/avcodec/vaapi.c | 46 ++++++++++++++++++++++++++++++++++-------
1 file changed, 38 insertions(+), 8 deletions(-)
diff --git a/modules/codec/avcodec/vaapi.c b/modules/codec/avcodec/vaapi.c
index f03aaa2..30d5094 100644
--- a/modules/codec/avcodec/vaapi.c
+++ b/modules/codec/avcodec/vaapi.c
@@ -85,6 +85,7 @@ typedef struct
VAImage image;
copy_cache_t image_cache;
+ bool b_supports_derive;
} vlc_va_vaapi_t;
static vlc_va_vaapi_t *vlc_va_vaapi_Get( void *p_va )
@@ -188,6 +189,8 @@ static int Open( vlc_va_vaapi_t *p_va, int i_codec_id )
p_va->i_surface_count = i_surface_count;
+ p_va->b_supports_derive = false;
+
if( asprintf( &p_va->va.description, "VA API version %d.%d",
p_va->i_version_major, p_va->i_version_minor ) < 0 )
p_va->va.description = NULL;
@@ -205,6 +208,10 @@ static void DestroySurfaces( vlc_va_vaapi_t *p_va )
CopyCleanCache( &p_va->image_cache );
vaDestroyImage( p_va->p_display, p_va->image.image_id );
}
+ else if(p_va->b_supports_derive)
+ {
+ CopyCleanCache( &p_va->image_cache );
+ }
if( p_va->i_context_id != VA_INVALID_ID )
vaDestroyContext( p_va->p_display, p_va->i_context_id );
@@ -277,6 +284,13 @@ static int CreateSurfaces( vlc_va_vaapi_t *p_va, void **pp_hw_ctx, vlc_fourcc_t
goto error;
}
+ VAImage testImage;
+ if(vaDeriveImage(p_va->p_display, pi_surface_id[0], &testImage) == VA_STATUS_SUCCESS)
+ {
+ p_va->b_supports_derive = true;
+ vaDestroyImage(p_va->p_display, testImage.image_id);
+ }
+
vlc_fourcc_t i_chroma = 0;
VAImageFormat fmt;
for( int i = 0; i < i_fmt_count; i++ )
@@ -310,6 +324,12 @@ static int CreateSurfaces( vlc_va_vaapi_t *p_va, void **pp_hw_ctx, vlc_fourcc_t
goto error;
*pi_chroma = i_chroma;
+ if(p_va->b_supports_derive)
+ {
+ vaDestroyImage( p_va->p_display, p_va->image.image_id );
+ p_va->image.image_id = VA_INVALID_ID;
+ }
+
if( unlikely(CopyInitCache( &p_va->image_cache, i_width )) )
goto error;
@@ -368,14 +388,18 @@ static int Extract( vlc_va_t *p_external, picture_t *p_picture, AVFrame *p_ff )
#endif
return VLC_EGENERIC;
- /* XXX vaDeriveImage may be better but it is not supported by
- * my setup.
- */
-
- if( vaGetImage( p_va->p_display, i_surface_id,
- 0, 0, p_va->i_surface_width, p_va->i_surface_height,
- p_va->image.image_id) )
- return VLC_EGENERIC;
+ if(p_va->b_supports_derive)
+ {
+ if(vaDeriveImage(p_va->p_display, i_surface_id, &(p_va->image)) != VA_STATUS_SUCCESS)
+ return VLC_EGENERIC;
+ }
+ else
+ {
+ if( vaGetImage( p_va->p_display, i_surface_id,
+ 0, 0, p_va->i_surface_width, p_va->i_surface_height,
+ p_va->image.image_id) )
+ return VLC_EGENERIC;
+ }
void *p_base;
if( vaMapBuffer( p_va->p_display, p_va->image.buf, &p_base ) )
@@ -420,6 +444,12 @@ static int Extract( vlc_va_t *p_external, picture_t *p_picture, AVFrame *p_ff )
if( vaUnmapBuffer( p_va->p_display, p_va->image.buf ) )
return VLC_EGENERIC;
+ if(p_va->b_supports_derive)
+ {
+ vaDestroyImage( p_va->p_display, p_va->image.image_id );
+ p_va->image.image_id = VA_INVALID_ID;
+ }
+
return VLC_SUCCESS;
}
static int Get( vlc_va_t *p_external, AVFrame *p_ff )
More information about the vlc-commits
mailing list