]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/vda.c
Revert "avcodec/vda: add shortcut for non-ambigous referencing"
[vlc] / modules / codec / avcodec / vda.c
1 /*****************************************************************************
2  * vda.c: VDA helpers for the libavcodec decoder
3  *****************************************************************************
4  * Copyright © 2012 VideoLAN
5  *
6  * Authors: Sebastien Zwickert <dilaroga@free.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include <assert.h>
28
29 #include <vlc_common.h>
30 #include <vlc_vout.h>
31 #include <vlc_plugin.h>
32
33 #include <libavcodec/avcodec.h>
34
35 #include "avcodec.h"
36 #include "va.h"
37 #include "copy.h"
38
39 #include <libavcodec/vda.h>
40 #include <VideoDecodeAcceleration/VDADecoder.h>
41
42 static int Open( vlc_va_t *, int, const es_format_t * );
43 static void Close( vlc_va_t * );
44
45 static const int  nvda_pix_fmt_list[] = { 0, 1 };
46 static const char *const nvda_pix_fmt_list_text[] =
47   { N_("420YpCbCr8Planar"), N_("422YpCbCr8") };
48
49 vlc_module_begin ()
50     set_description( N_("Video Decode Acceleration Framework (VDA)") )
51     set_capability( "hw decoder", 50 )
52     set_category( CAT_INPUT )
53     set_subcategory( SUBCAT_INPUT_VCODEC )
54     set_callbacks( Open, Close )
55     add_integer ( "avcodec-vda-pix-fmt", 0, VDA_PIX_FMT_TEXT,
56                   VDA_PIX_FMT_LONGTEXT, false)
57         change_integer_list( nvda_pix_fmt_list, nvda_pix_fmt_list_text )
58 vlc_module_end ()
59
60 struct vlc_va_sys_t
61 {
62     struct vda_context  hw_ctx;
63
64     uint8_t             *p_extradata;
65     int                 i_extradata;
66
67     vlc_fourcc_t        i_chroma;
68
69     copy_cache_t        image_cache;
70
71     vlc_object_t        *p_log;
72
73 };
74
75 typedef struct vlc_va_sys_t vlc_va_vda_t;
76
77 static vlc_va_vda_t *vlc_va_vda_Get( vlc_va_t *p_va )
78 {
79     return p_va->sys;
80 }
81
82 /*****************************************************************************
83  * vda_Copy420YpCbCr8Planar: copy y420 CVPixelBuffer to picture_t
84  *****************************************************************************/
85 static void vda_Copy420YpCbCr8Planar( picture_t *p_pic,
86                                       CVPixelBufferRef buffer,
87                                       unsigned i_width,
88                                       unsigned i_height,
89                                       copy_cache_t *cache )
90 {
91     uint8_t *pp_plane[3];
92     size_t  pi_pitch[3];
93
94     CVPixelBufferLockBaseAddress( buffer, 0 );
95
96     for( int i = 0; i < 3; i++ )
97     {
98         pp_plane[i] = CVPixelBufferGetBaseAddressOfPlane( buffer, i );
99         pi_pitch[i] = CVPixelBufferGetBytesPerRowOfPlane( buffer, i );
100     }
101
102     CopyFromYv12( p_pic, pp_plane, pi_pitch,
103                   i_width, i_height, cache );
104
105     CVPixelBufferUnlockBaseAddress( buffer, 0 );
106 }
107
108 /*****************************************************************************
109  * vda_Copy422YpCbCr8: copy 2vuy CVPixelBuffer to picture_t
110  *****************************************************************************/
111 static void vda_Copy422YpCbCr8( picture_t *p_pic,
112                                 CVPixelBufferRef buffer )
113 {
114     int i_plane, i_line, i_dst_stride, i_src_stride;
115     uint8_t *p_dst, *p_src;
116
117     CVPixelBufferLockBaseAddress( buffer, 0 );
118
119     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
120     {
121         p_dst = p_pic->p[i_plane].p_pixels;
122         p_src = CVPixelBufferGetBaseAddressOfPlane( buffer, i_plane );
123         i_dst_stride  = p_pic->p[i_plane].i_pitch;
124         i_src_stride  = CVPixelBufferGetBytesPerRowOfPlane( buffer, i_plane );
125
126         for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines ; i_line++ )
127         {
128             memcpy( p_dst, p_src, i_src_stride );
129
130             p_src += i_src_stride;
131             p_dst += i_dst_stride;
132         }
133     }
134
135     CVPixelBufferUnlockBaseAddress( buffer, 0 );
136 }
137
138 static int Setup( vlc_va_t *p_external, void **pp_hw_ctx, vlc_fourcc_t *pi_chroma,
139                   int i_width, int i_height )
140 {
141
142     vlc_va_vda_t *p_va = vlc_va_vda_Get( p_external );
143
144     if( p_va->hw_ctx.width == i_width
145         && p_va->hw_ctx.height == i_height
146         && p_va->hw_ctx.decoder )
147     {
148         *pp_hw_ctx = &p_va->hw_ctx;
149         *pi_chroma = p_va->i_chroma;
150         return VLC_SUCCESS;
151     }
152
153     if( p_va->hw_ctx.decoder )
154     {
155         ff_vda_destroy_decoder( &p_va->hw_ctx );
156         goto ok;
157     }
158
159     memset( &p_va->hw_ctx, 0, sizeof(p_va->hw_ctx) );
160     p_va->hw_ctx.width = i_width;
161     p_va->hw_ctx.height = i_height;
162     p_va->hw_ctx.format = 'avc1';
163
164     int i_pix_fmt = var_CreateGetInteger( p_va->p_log, "avcodec-vda-pix-fmt" );
165
166     switch( i_pix_fmt )
167     {
168         case 1 :
169             p_va->hw_ctx.cv_pix_fmt_type = kCVPixelFormatType_422YpCbCr8;
170             p_va->i_chroma = VLC_CODEC_UYVY;
171             msg_Dbg(p_va->p_log, "using pixel format 422YpCbCr8");
172             break;
173         case 0 :
174         default :
175             p_va->hw_ctx.cv_pix_fmt_type = kCVPixelFormatType_420YpCbCr8Planar;
176             p_va->i_chroma = VLC_CODEC_I420;
177             CopyInitCache( &p_va->image_cache, i_width );
178             msg_Dbg(p_va->p_log, "using pixel format 420YpCbCr8Planar");
179     }
180
181 ok:
182     /* Setup the libavcodec hardware context */
183     *pp_hw_ctx = &p_va->hw_ctx;
184     *pi_chroma = p_va->i_chroma;
185
186     /* create the decoder */
187     int status = ff_vda_create_decoder( &p_va->hw_ctx,
188                                         p_va->p_extradata,
189                                         p_va->i_extradata );
190     if( status )
191     {
192         msg_Err( p_va->p_log, "Failed to create decoder: %i", status );
193         return VLC_EGENERIC;
194     }
195     else
196         msg_Dbg( p_va->p_log, "VDA decoder created");
197
198     return VLC_SUCCESS;
199 }
200
201 static int Get( vlc_va_t *p_external, AVFrame *p_ff )
202 {
203     VLC_UNUSED( p_external );
204
205     /* */
206     for( int i = 0; i < 4; i++ )
207     {
208         p_ff->data[i] = NULL;
209         p_ff->linesize[i] = 0;
210
211         if( i == 0 || i == 3 )
212         p_ff->data[i] = (uint8_t *)1; // dummy
213     }
214
215     return VLC_SUCCESS;
216 }
217
218 static int Extract( vlc_va_t *p_external, picture_t *p_picture, AVFrame *p_ff )
219 {
220     vlc_va_vda_t *p_va = vlc_va_vda_Get( p_external );
221     CVPixelBufferRef cv_buffer = ( CVPixelBufferRef )p_ff->data[3];
222
223     if( !cv_buffer )
224     {
225         msg_Dbg( p_va->p_log, "Frame buffer is empty.");
226         return VLC_EGENERIC;
227     }
228
229     if( p_va->hw_ctx.cv_pix_fmt_type == kCVPixelFormatType_420YpCbCr8Planar )
230     {
231         if( !p_va->image_cache.buffer )
232             return VLC_EGENERIC;
233
234         vda_Copy420YpCbCr8Planar( p_picture,
235                                   cv_buffer,
236                                   p_va->hw_ctx.width,
237                                   p_va->hw_ctx.height,
238                                   &p_va->image_cache );
239     }
240     else
241         vda_Copy422YpCbCr8( p_picture, cv_buffer );
242
243     return VLC_SUCCESS;
244 }
245
246 static void Release( vlc_va_t *p_external, AVFrame *p_ff )
247 {
248     VLC_UNUSED( p_external );
249     CVPixelBufferRef cv_buffer = ( CVPixelBufferRef )p_ff->data[3];
250
251     if ( cv_buffer )
252         CFRelease( cv_buffer );
253 }
254
255 static void Close( vlc_va_t *p_external )
256 {
257     vlc_va_vda_t *p_va = vlc_va_vda_Get( p_external );
258
259     msg_Dbg(p_va->p_log, "destroying VDA decoder");
260
261     ff_vda_destroy_decoder( &p_va->hw_ctx ) ;
262
263     if( p_va->hw_ctx.cv_pix_fmt_type == kCVPixelFormatType_420YpCbCr8Planar )
264         CopyCleanCache( &p_va->image_cache );
265
266     free( p_va );
267 }
268
269 static int Open( vlc_va_t *external, int i_codec_id, const es_format_t *fmt )
270 {
271     msg_Dbg( external, "opening VDA module" );
272     if( i_codec_id != AV_CODEC_ID_H264 )
273     {
274         msg_Warn( external, "input codec isn't H264, canceling VDA decoding" );
275         return VLC_EGENERIC;
276     }
277
278     if( fmt->p_extra == NULL || fmt->i_extra < 7 )
279     {
280         msg_Warn( external, "VDA requires extradata." );
281         return VLC_EGENERIC;
282     }
283
284     vlc_va_vda_t *p_va = calloc( 1, sizeof(*p_va) );
285     if( !p_va )
286         return VLC_EGENERIC;
287
288     p_va->p_log = VLC_OBJECT(external);
289     p_va->p_extradata = fmt->p_extra;
290     p_va->i_extradata = fmt->i_extra;
291
292     external->sys = p_va;
293     external->description = (char *)"VDA";
294     external->pix_fmt = PIX_FMT_VDA_VLD;
295     external->setup = Setup;
296     external->get = Get;
297     external->release = Release;
298     external->extract = Extract;
299
300     return VLC_SUCCESS;
301 }