Commit 55fbe11e authored by Felix Paul Kühne's avatar Felix Paul Kühne

avcodec/vda: cosmetics

parent 7a3a03a9
/***************************************************************************** /*****************************************************************************
* vda.c: VDA helpers for the libavcodec decoder * vda.c: VDA helpers for the libavcodec decoder
***************************************************************************** *****************************************************************************
* Copyright © 2012 VideoLAN * Copyright (C) 2012-2014 VLC authors VideoLAN
* *
* Authors: Sebastien Zwickert <dilaroga@free.fr> * Authors: Sebastien Zwickert <dilaroga@free.fr>
* Rémi Denis-Courmont <remi # remlab : net>
* Felix Paul Kühne <fkuehne # videolan org>
* David Fuhrmann <david.fuhrmann # googlemail com>
* *
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by * under the terms of the GNU Lesser General Public License as published by
...@@ -39,8 +42,14 @@ ...@@ -39,8 +42,14 @@
#include <libavcodec/vda.h> #include <libavcodec/vda.h>
#include <VideoDecodeAcceleration/VDADecoder.h> #include <VideoDecodeAcceleration/VDADecoder.h>
#pragma mark prototypes and definitions
static int Open( vlc_va_t *, AVCodecContext *, const es_format_t * ); static int Open( vlc_va_t *, AVCodecContext *, const es_format_t * );
static void Close( vlc_va_t * ); static void Close( vlc_va_t * );
static int Setup( vlc_va_t *, void **, vlc_fourcc_t *, int , int );
static int Get( vlc_va_t *, void **, uint8_t ** );
static int Extract( vlc_va_t *, picture_t *, void *, uint8_t * );
static void Release( void *, uint8_t * );
static const int nvda_pix_fmt_list[] = { 0, 1 }; static const int nvda_pix_fmt_list[] = { 0, 1 };
static const char *const nvda_pix_fmt_list_text[] = static const char *const nvda_pix_fmt_list_text[] =
...@@ -79,73 +88,65 @@ static vlc_va_vda_t *vlc_va_vda_Get( vlc_va_t *p_va ) ...@@ -79,73 +88,65 @@ static vlc_va_vda_t *vlc_va_vda_Get( vlc_va_t *p_va )
return p_va->sys; return p_va->sys;
} }
/***************************************************************************** #pragma mark - module handling
* vda_Copy420YpCbCr8Planar: copy y420 CVPixelBuffer to picture_t
*****************************************************************************/
static void vda_Copy420YpCbCr8Planar( picture_t *p_pic,
CVPixelBufferRef buffer,
unsigned i_width,
unsigned i_height,
copy_cache_t *cache )
{
uint8_t *pp_plane[3];
size_t pi_pitch[3];
if (!buffer) static int Open( vlc_va_t *external, AVCodecContext *ctx,
return; const es_format_t *fmt )
{
CVPixelBufferLockBaseAddress( buffer, 0 ); msg_Dbg( external, "opening VDA module" );
if( ctx->codec_id != AV_CODEC_ID_H264 )
{
msg_Warn( external, "input codec isn't H264, canceling VDA decoding" );
return VLC_EGENERIC;
}
for( int i = 0; i < 3; i++ ) if( fmt->p_extra == NULL || fmt->i_extra < 7 )
{ {
pp_plane[i] = CVPixelBufferGetBaseAddressOfPlane( buffer, i ); msg_Warn( external, "VDA requires extradata." );
pi_pitch[i] = CVPixelBufferGetBytesPerRowOfPlane( buffer, i ); return VLC_EGENERIC;
} }
CopyFromYv12( p_pic, pp_plane, pi_pitch, vlc_va_vda_t *p_va = calloc( 1, sizeof(*p_va) );
i_width, i_height, cache ); if( !p_va )
return VLC_EGENERIC;
CVPixelBufferUnlockBaseAddress( buffer, 0 ); p_va->p_log = VLC_OBJECT(external);
p_va->p_extradata = fmt->p_extra;
p_va->i_extradata = fmt->i_extra;
external->sys = p_va;
external->description = (char *)"VDA";
external->pix_fmt = PIX_FMT_VDA_VLD;
external->setup = Setup;
external->get = Get;
external->release = Release;
external->extract = Extract;
return VLC_SUCCESS;
} }
/***************************************************************************** static void Close( vlc_va_t *external )
* vda_Copy422YpCbCr8: copy 2vuy CVPixelBuffer to picture_t
*****************************************************************************/
static void vda_Copy422YpCbCr8( picture_t *p_pic,
CVPixelBufferRef buffer )
{ {
int i_plane, i_line, i_dst_stride, i_src_stride; vlc_va_vda_t *p_va = vlc_va_vda_Get( external );
uint8_t *p_dst, *p_src;
CVPixelBufferLockBaseAddress( buffer, 0 );
for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ ) msg_Dbg(p_va->p_log, "destroying VDA decoder");
{
p_dst = p_pic->p[i_plane].p_pixels;
p_src = CVPixelBufferGetBaseAddressOfPlane( buffer, i_plane );
i_dst_stride = p_pic->p[i_plane].i_pitch;
i_src_stride = CVPixelBufferGetBytesPerRowOfPlane( buffer, i_plane );
for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines ; i_line++ ) ff_vda_destroy_decoder( &p_va->hw_ctx ) ;
{
memcpy( p_dst, p_src, i_src_stride );
p_src += i_src_stride; if( p_va->hw_ctx.cv_pix_fmt_type == kCVPixelFormatType_420YpCbCr8Planar )
p_dst += i_dst_stride; CopyCleanCache( &p_va->image_cache );
}
}
CVPixelBufferUnlockBaseAddress( buffer, 0 ); free( p_va );
} }
static int Setup( vlc_va_t *external, void **pp_hw_ctx, vlc_fourcc_t *pi_chroma, static int Setup( vlc_va_t *external, void **pp_hw_ctx, vlc_fourcc_t *pi_chroma,
int i_width, int i_height ) int i_width, int i_height )
{ {
vlc_va_vda_t *p_va = vlc_va_vda_Get( external ); vlc_va_vda_t *p_va = vlc_va_vda_Get( external );
if( p_va->hw_ctx.width == i_width if( p_va->hw_ctx.width == i_width
&& p_va->hw_ctx.height == i_height && p_va->hw_ctx.height == i_height
&& p_va->hw_ctx.decoder ) && p_va->hw_ctx.decoder )
{ {
*pp_hw_ctx = &p_va->hw_ctx; *pp_hw_ctx = &p_va->hw_ctx;
*pi_chroma = p_va->i_chroma; *pi_chroma = p_va->i_chroma;
...@@ -189,8 +190,8 @@ ok: ...@@ -189,8 +190,8 @@ ok:
/* create the decoder */ /* create the decoder */
int status = ff_vda_create_decoder( &p_va->hw_ctx, int status = ff_vda_create_decoder( &p_va->hw_ctx,
p_va->p_extradata, p_va->p_extradata,
p_va->i_extradata ); p_va->i_extradata );
if( status ) if( status )
{ {
msg_Err( p_va->p_log, "Failed to create decoder: %i", status ); msg_Err( p_va->p_log, "Failed to create decoder: %i", status );
...@@ -198,10 +199,66 @@ ok: ...@@ -198,10 +199,66 @@ ok:
} }
else else
msg_Dbg( p_va->p_log, "VDA decoder created"); msg_Dbg( p_va->p_log, "VDA decoder created");
return VLC_SUCCESS; return VLC_SUCCESS;
} }
#pragma mark - actual data handling
static void vda_Copy420YpCbCr8Planar( picture_t *p_pic,
CVPixelBufferRef buffer,
unsigned i_width,
unsigned i_height,
copy_cache_t *cache )
{
uint8_t *pp_plane[3];
size_t pi_pitch[3];
if (!buffer)
return;
CVPixelBufferLockBaseAddress( buffer, 0 );
for( int i = 0; i < 3; i++ )
{
pp_plane[i] = CVPixelBufferGetBaseAddressOfPlane( buffer, i );
pi_pitch[i] = CVPixelBufferGetBytesPerRowOfPlane( buffer, i );
}
CopyFromYv12( p_pic, pp_plane, pi_pitch,
i_width, i_height, cache );
CVPixelBufferUnlockBaseAddress( buffer, 0 );
}
static void vda_Copy422YpCbCr8( picture_t *p_pic,
CVPixelBufferRef buffer )
{
int i_dst_stride, i_src_stride;
uint8_t *p_dst, *p_src;
CVPixelBufferLockBaseAddress( buffer, 0 );
for( int i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
{
p_dst = p_pic->p[i_plane].p_pixels;
p_src = CVPixelBufferGetBaseAddressOfPlane( buffer, i_plane );
i_dst_stride = p_pic->p[i_plane].i_pitch;
i_src_stride = CVPixelBufferGetBytesPerRowOfPlane( buffer, i_plane );
for( int i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines ; i_line++ )
{
memcpy( p_dst, p_src, i_src_stride );
p_src += i_src_stride;
p_dst += i_dst_stride;
}
}
CVPixelBufferUnlockBaseAddress( buffer, 0 );
}
static int Get( vlc_va_t *external, void **opaque, uint8_t **data ) static int Get( vlc_va_t *external, void **opaque, uint8_t **data )
{ {
VLC_UNUSED( external ); VLC_UNUSED( external );
...@@ -257,52 +314,3 @@ static void Release( void *opaque, uint8_t *data ) ...@@ -257,52 +314,3 @@ static void Release( void *opaque, uint8_t *data )
#endif #endif
(void) opaque; (void) data; (void) opaque; (void) data;
} }
static void Close( vlc_va_t *external )
{
vlc_va_vda_t *p_va = vlc_va_vda_Get( external );
msg_Dbg(p_va->p_log, "destroying VDA decoder");
ff_vda_destroy_decoder( &p_va->hw_ctx ) ;
if( p_va->hw_ctx.cv_pix_fmt_type == kCVPixelFormatType_420YpCbCr8Planar )
CopyCleanCache( &p_va->image_cache );
free( p_va );
}
static int Open( vlc_va_t *external, AVCodecContext *ctx,
const es_format_t *fmt )
{
msg_Dbg( external, "opening VDA module" );
if( ctx->codec_id != AV_CODEC_ID_H264 )
{
msg_Warn( external, "input codec isn't H264, canceling VDA decoding" );
return VLC_EGENERIC;
}
if( fmt->p_extra == NULL || fmt->i_extra < 7 )
{
msg_Warn( external, "VDA requires extradata." );
return VLC_EGENERIC;
}
vlc_va_vda_t *p_va = calloc( 1, sizeof(*p_va) );
if( !p_va )
return VLC_EGENERIC;
p_va->p_log = VLC_OBJECT(external);
p_va->p_extradata = fmt->p_extra;
p_va->i_extradata = fmt->i_extra;
external->sys = p_va;
external->description = (char *)"VDA";
external->pix_fmt = PIX_FMT_VDA_VLD;
external->setup = Setup;
external->get = Get;
external->release = Release;
external->extract = Extract;
return VLC_SUCCESS;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment