]> git.sesse.net Git - ffmpeg/blob - libavcodec/omx.c
h264: rename h264.[ch] to h264dec.[ch]
[ffmpeg] / libavcodec / omx.c
1 /*
2  * OMX Video encoder
3  * Copyright (C) 2011 Martin Storsjo
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23
24 #if CONFIG_OMX_RPI
25 #define OMX_SKIP64BIT
26 #endif
27
28 #include <dlfcn.h>
29 #include <OMX_Core.h>
30 #include <OMX_Component.h>
31 #include <pthread.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <sys/time.h>
35
36 #include "libavutil/avstring.h"
37 #include "libavutil/avutil.h"
38 #include "libavutil/common.h"
39 #include "libavutil/imgutils.h"
40 #include "libavutil/log.h"
41 #include "libavutil/opt.h"
42
43 #include "avcodec.h"
44 #include "h264dec.h"
45 #include "internal.h"
46
47 #ifdef OMX_SKIP64BIT
48 static OMX_TICKS to_omx_ticks(int64_t value)
49 {
50     OMX_TICKS s;
51     s.nLowPart  = value & 0xffffffff;
52     s.nHighPart = value >> 32;
53     return s;
54 }
55 static int64_t from_omx_ticks(OMX_TICKS value)
56 {
57     return (((int64_t)value.nHighPart) << 32) | value.nLowPart;
58 }
59 #else
60 #define to_omx_ticks(x) (x)
61 #define from_omx_ticks(x) (x)
62 #endif
63
64 #define INIT_STRUCT(x) do {                                               \
65         x.nSize = sizeof(x);                                              \
66         x.nVersion = s->version;                                          \
67     } while (0)
68 #define CHECK(x) do {                                                     \
69         if (x != OMX_ErrorNone) {                                         \
70             av_log(avctx, AV_LOG_ERROR,                                   \
71                    "err %x (%d) on line %d\n", x, x, __LINE__);           \
72             return AVERROR_UNKNOWN;                                       \
73         }                                                                 \
74     } while (0)
75
76 typedef struct OMXContext {
77     void *lib;
78     void *lib2;
79     OMX_ERRORTYPE (*ptr_Init)(void);
80     OMX_ERRORTYPE (*ptr_Deinit)(void);
81     OMX_ERRORTYPE (*ptr_ComponentNameEnum)(OMX_STRING, OMX_U32, OMX_U32);
82     OMX_ERRORTYPE (*ptr_GetHandle)(OMX_HANDLETYPE*, OMX_STRING, OMX_PTR, OMX_CALLBACKTYPE*);
83     OMX_ERRORTYPE (*ptr_FreeHandle)(OMX_HANDLETYPE);
84     OMX_ERRORTYPE (*ptr_GetComponentsOfRole)(OMX_STRING, OMX_U32*, OMX_U8**);
85     OMX_ERRORTYPE (*ptr_GetRolesOfComponent)(OMX_STRING, OMX_U32*, OMX_U8**);
86     void (*host_init)(void);
87 } OMXContext;
88
89 static av_cold void *dlsym_prefixed(void *handle, const char *symbol, const char *prefix)
90 {
91     char buf[50];
92     snprintf(buf, sizeof(buf), "%s%s", prefix ? prefix : "", symbol);
93     return dlsym(handle, buf);
94 }
95
96 static av_cold int omx_try_load(OMXContext *s, void *logctx,
97                                 const char *libname, const char *prefix,
98                                 const char *libname2)
99 {
100     if (libname2) {
101         s->lib2 = dlopen(libname2, RTLD_NOW | RTLD_GLOBAL);
102         if (!s->lib2) {
103             av_log(logctx, AV_LOG_WARNING, "%s not found\n", libname);
104             return AVERROR_ENCODER_NOT_FOUND;
105         }
106         s->host_init = dlsym(s->lib2, "bcm_host_init");
107         if (!s->host_init) {
108             av_log(logctx, AV_LOG_WARNING, "bcm_host_init not found\n");
109             dlclose(s->lib2);
110             s->lib2 = NULL;
111             return AVERROR_ENCODER_NOT_FOUND;
112         }
113     }
114     s->lib = dlopen(libname, RTLD_NOW | RTLD_GLOBAL);
115     if (!s->lib) {
116         av_log(logctx, AV_LOG_WARNING, "%s not found\n", libname);
117         return AVERROR_ENCODER_NOT_FOUND;
118     }
119     s->ptr_Init                = dlsym_prefixed(s->lib, "OMX_Init", prefix);
120     s->ptr_Deinit              = dlsym_prefixed(s->lib, "OMX_Deinit", prefix);
121     s->ptr_ComponentNameEnum   = dlsym_prefixed(s->lib, "OMX_ComponentNameEnum", prefix);
122     s->ptr_GetHandle           = dlsym_prefixed(s->lib, "OMX_GetHandle", prefix);
123     s->ptr_FreeHandle          = dlsym_prefixed(s->lib, "OMX_FreeHandle", prefix);
124     s->ptr_GetComponentsOfRole = dlsym_prefixed(s->lib, "OMX_GetComponentsOfRole", prefix);
125     s->ptr_GetRolesOfComponent = dlsym_prefixed(s->lib, "OMX_GetRolesOfComponent", prefix);
126     if (!s->ptr_Init || !s->ptr_Deinit || !s->ptr_ComponentNameEnum ||
127         !s->ptr_GetHandle || !s->ptr_FreeHandle ||
128         !s->ptr_GetComponentsOfRole || !s->ptr_GetRolesOfComponent) {
129         av_log(logctx, AV_LOG_WARNING, "Not all functions found in %s\n", libname);
130         dlclose(s->lib);
131         s->lib = NULL;
132         if (s->lib2)
133             dlclose(s->lib2);
134         s->lib2 = NULL;
135         return AVERROR_ENCODER_NOT_FOUND;
136     }
137     return 0;
138 }
139
140 static av_cold OMXContext *omx_init(void *logctx, const char *libname, const char *prefix)
141 {
142     static const char * const libnames[] = {
143 #if CONFIG_OMX_RPI
144         "/opt/vc/lib/libopenmaxil.so", "/opt/vc/lib/libbcm_host.so",
145 #else
146         "libOMX_Core.so", NULL,
147         "libOmxCore.so", NULL,
148 #endif
149         NULL
150     };
151     const char* const* nameptr;
152     int ret = AVERROR_ENCODER_NOT_FOUND;
153     OMXContext *omx_context;
154
155     omx_context = av_mallocz(sizeof(*omx_context));
156     if (!omx_context)
157         return NULL;
158     if (libname) {
159         ret = omx_try_load(omx_context, logctx, libname, prefix, NULL);
160         if (ret < 0) {
161             av_free(omx_context);
162             return NULL;
163         }
164     } else {
165         for (nameptr = libnames; *nameptr; nameptr += 2)
166             if (!(ret = omx_try_load(omx_context, logctx, nameptr[0], prefix, nameptr[1])))
167                 break;
168         if (!*nameptr) {
169             av_free(omx_context);
170             return NULL;
171         }
172     }
173
174     if (omx_context->host_init)
175         omx_context->host_init();
176     omx_context->ptr_Init();
177     return omx_context;
178 }
179
180 static av_cold void omx_deinit(OMXContext *omx_context)
181 {
182     if (!omx_context)
183         return;
184     omx_context->ptr_Deinit();
185     dlclose(omx_context->lib);
186     av_free(omx_context);
187 }
188
189 typedef struct OMXCodecContext {
190     const AVClass *class;
191     char *libname;
192     char *libprefix;
193     OMXContext *omx_context;
194
195     AVCodecContext *avctx;
196
197     char component_name[OMX_MAX_STRINGNAME_SIZE];
198     OMX_VERSIONTYPE version;
199     OMX_HANDLETYPE handle;
200     int in_port, out_port;
201     OMX_COLOR_FORMATTYPE color_format;
202     int stride, plane_size;
203
204     int num_in_buffers, num_out_buffers;
205     OMX_BUFFERHEADERTYPE **in_buffer_headers;
206     OMX_BUFFERHEADERTYPE **out_buffer_headers;
207     int num_free_in_buffers;
208     OMX_BUFFERHEADERTYPE **free_in_buffers;
209     int num_done_out_buffers;
210     OMX_BUFFERHEADERTYPE **done_out_buffers;
211     pthread_mutex_t input_mutex;
212     pthread_cond_t input_cond;
213     pthread_mutex_t output_mutex;
214     pthread_cond_t output_cond;
215
216     pthread_mutex_t state_mutex;
217     pthread_cond_t state_cond;
218     OMX_STATETYPE state;
219     OMX_ERRORTYPE error;
220
221     int mutex_cond_inited;
222
223     int num_in_frames, num_out_frames;
224
225     uint8_t *output_buf;
226     int output_buf_size;
227
228     int input_zerocopy;
229 } OMXCodecContext;
230
231 static void append_buffer(pthread_mutex_t *mutex, pthread_cond_t *cond,
232                           int* array_size, OMX_BUFFERHEADERTYPE **array,
233                           OMX_BUFFERHEADERTYPE *buffer)
234 {
235     pthread_mutex_lock(mutex);
236     array[(*array_size)++] = buffer;
237     pthread_cond_broadcast(cond);
238     pthread_mutex_unlock(mutex);
239 }
240
241 static OMX_BUFFERHEADERTYPE *get_buffer(pthread_mutex_t *mutex, pthread_cond_t *cond,
242                                         int* array_size, OMX_BUFFERHEADERTYPE **array,
243                                         int wait)
244 {
245     OMX_BUFFERHEADERTYPE *buffer;
246     pthread_mutex_lock(mutex);
247     if (wait) {
248         while (!*array_size)
249            pthread_cond_wait(cond, mutex);
250     }
251     if (*array_size > 0) {
252         buffer = array[0];
253         (*array_size)--;
254         memmove(&array[0], &array[1], (*array_size) * sizeof(OMX_BUFFERHEADERTYPE*));
255     } else {
256         buffer = NULL;
257     }
258     pthread_mutex_unlock(mutex);
259     return buffer;
260 }
261
262 static OMX_ERRORTYPE event_handler(OMX_HANDLETYPE component, OMX_PTR app_data, OMX_EVENTTYPE event,
263                                    OMX_U32 data1, OMX_U32 data2, OMX_PTR event_data)
264 {
265     OMXCodecContext *s = app_data;
266     // This uses casts in the printfs, since OMX_U32 actually is a typedef for
267     // unsigned long in official header versions (but there are also modified
268     // versions where it is something else).
269     switch (event) {
270     case OMX_EventError:
271         pthread_mutex_lock(&s->state_mutex);
272         av_log(s->avctx, AV_LOG_ERROR, "OMX error %"PRIx32"\n", (uint32_t) data1);
273         s->error = data1;
274         pthread_cond_broadcast(&s->state_cond);
275         pthread_mutex_unlock(&s->state_mutex);
276         break;
277     case OMX_EventCmdComplete:
278         if (data1 == OMX_CommandStateSet) {
279             pthread_mutex_lock(&s->state_mutex);
280             s->state = data2;
281             av_log(s->avctx, AV_LOG_VERBOSE, "OMX state changed to %"PRIu32"\n", (uint32_t) data2);
282             pthread_cond_broadcast(&s->state_cond);
283             pthread_mutex_unlock(&s->state_mutex);
284         } else if (data1 == OMX_CommandPortDisable) {
285             av_log(s->avctx, AV_LOG_VERBOSE, "OMX port %"PRIu32" disabled\n", (uint32_t) data2);
286         } else if (data1 == OMX_CommandPortEnable) {
287             av_log(s->avctx, AV_LOG_VERBOSE, "OMX port %"PRIu32" enabled\n", (uint32_t) data2);
288         } else {
289             av_log(s->avctx, AV_LOG_VERBOSE, "OMX command complete, command %"PRIu32", value %"PRIu32"\n",
290                                              (uint32_t) data1, (uint32_t) data2);
291         }
292         break;
293     case OMX_EventPortSettingsChanged:
294         av_log(s->avctx, AV_LOG_VERBOSE, "OMX port %"PRIu32" settings changed\n", (uint32_t) data1);
295         break;
296     default:
297         av_log(s->avctx, AV_LOG_VERBOSE, "OMX event %d %"PRIx32" %"PRIx32"\n",
298                                          event, (uint32_t) data1, (uint32_t) data2);
299         break;
300     }
301     return OMX_ErrorNone;
302 }
303
304 static OMX_ERRORTYPE empty_buffer_done(OMX_HANDLETYPE component, OMX_PTR app_data,
305                                        OMX_BUFFERHEADERTYPE *buffer)
306 {
307     OMXCodecContext *s = app_data;
308     if (s->input_zerocopy) {
309         if (buffer->pAppPrivate) {
310             if (buffer->pOutputPortPrivate)
311                 av_free(buffer->pAppPrivate);
312             else
313                 av_frame_free((AVFrame**)&buffer->pAppPrivate);
314             buffer->pAppPrivate = NULL;
315         }
316     }
317     append_buffer(&s->input_mutex, &s->input_cond,
318                   &s->num_free_in_buffers, s->free_in_buffers, buffer);
319     return OMX_ErrorNone;
320 }
321
322 static OMX_ERRORTYPE fill_buffer_done(OMX_HANDLETYPE component, OMX_PTR app_data,
323                                       OMX_BUFFERHEADERTYPE *buffer)
324 {
325     OMXCodecContext *s = app_data;
326     append_buffer(&s->output_mutex, &s->output_cond,
327                   &s->num_done_out_buffers, s->done_out_buffers, buffer);
328     return OMX_ErrorNone;
329 }
330
331 static const OMX_CALLBACKTYPE callbacks = {
332     event_handler,
333     empty_buffer_done,
334     fill_buffer_done
335 };
336
337 static av_cold int find_component(OMXContext *omx_context, void *logctx,
338                                   const char *role, char *str, int str_size)
339 {
340     OMX_U32 i, num = 0;
341     char **components;
342     int ret = 0;
343
344 #if CONFIG_OMX_RPI
345     if (av_strstart(role, "video_encoder.", NULL)) {
346         av_strlcpy(str, "OMX.broadcom.video_encode", str_size);
347         return 0;
348     }
349 #endif
350     omx_context->ptr_GetComponentsOfRole((OMX_STRING) role, &num, NULL);
351     if (!num) {
352         av_log(logctx, AV_LOG_WARNING, "No component for role %s found\n", role);
353         return AVERROR_ENCODER_NOT_FOUND;
354     }
355     components = av_mallocz(sizeof(char*) * num);
356     if (!components)
357         return AVERROR(ENOMEM);
358     for (i = 0; i < num; i++) {
359         components[i] = av_mallocz(OMX_MAX_STRINGNAME_SIZE);
360         if (!components) {
361             ret = AVERROR(ENOMEM);
362             goto end;
363         }
364     }
365     omx_context->ptr_GetComponentsOfRole((OMX_STRING) role, &num, (OMX_U8**) components);
366     av_strlcpy(str, components[0], str_size);
367 end:
368     for (i = 0; i < num; i++)
369         av_free(components[i]);
370     av_free(components);
371     return ret;
372 }
373
374 static av_cold int wait_for_state(OMXCodecContext *s, OMX_STATETYPE state)
375 {
376     int ret = 0;
377     pthread_mutex_lock(&s->state_mutex);
378     while (s->state != state && s->error == OMX_ErrorNone)
379         pthread_cond_wait(&s->state_cond, &s->state_mutex);
380     if (s->error != OMX_ErrorNone)
381         ret = AVERROR_ENCODER_NOT_FOUND;
382     pthread_mutex_unlock(&s->state_mutex);
383     return ret;
384 }
385
386 static av_cold int omx_component_init(AVCodecContext *avctx, const char *role)
387 {
388     OMXCodecContext *s = avctx->priv_data;
389     OMX_PARAM_COMPONENTROLETYPE role_params = { 0 };
390     OMX_PORT_PARAM_TYPE video_port_params = { 0 };
391     OMX_PARAM_PORTDEFINITIONTYPE in_port_params = { 0 }, out_port_params = { 0 };
392     OMX_VIDEO_PARAM_PORTFORMATTYPE video_port_format = { 0 };
393     OMX_VIDEO_PARAM_BITRATETYPE vid_param_bitrate = { 0 };
394     OMX_ERRORTYPE err;
395     int i;
396
397     s->version.s.nVersionMajor = 1;
398     s->version.s.nVersionMinor = 1;
399     s->version.s.nRevision     = 2;
400
401     err = s->omx_context->ptr_GetHandle(&s->handle, s->component_name, s, (OMX_CALLBACKTYPE*) &callbacks);
402     if (err != OMX_ErrorNone) {
403         av_log(avctx, AV_LOG_ERROR, "OMX_GetHandle(%s) failed: %x\n", s->component_name, err);
404         return AVERROR_UNKNOWN;
405     }
406
407     // This one crashes the mediaserver on qcom, if used over IOMX
408     INIT_STRUCT(role_params);
409     av_strlcpy(role_params.cRole, role, sizeof(role_params.cRole));
410     // Intentionally ignore errors on this one
411     OMX_SetParameter(s->handle, OMX_IndexParamStandardComponentRole, &role_params);
412
413     INIT_STRUCT(video_port_params);
414     err = OMX_GetParameter(s->handle, OMX_IndexParamVideoInit, &video_port_params);
415     CHECK(err);
416
417     s->in_port = s->out_port = -1;
418     for (i = 0; i < video_port_params.nPorts; i++) {
419         int port = video_port_params.nStartPortNumber + i;
420         OMX_PARAM_PORTDEFINITIONTYPE port_params = { 0 };
421         INIT_STRUCT(port_params);
422         port_params.nPortIndex = port;
423         err = OMX_GetParameter(s->handle, OMX_IndexParamPortDefinition, &port_params);
424         if (err != OMX_ErrorNone) {
425             av_log(avctx, AV_LOG_WARNING, "port %d error %x\n", port, err);
426             break;
427         }
428         if (port_params.eDir == OMX_DirInput && s->in_port < 0) {
429             in_port_params = port_params;
430             s->in_port = port;
431         } else if (port_params.eDir == OMX_DirOutput && s->out_port < 0) {
432             out_port_params = port_params;
433             s->out_port = port;
434         }
435     }
436     if (s->in_port < 0 || s->out_port < 0) {
437         av_log(avctx, AV_LOG_ERROR, "No in or out port found (in %d out %d)\n", s->in_port, s->out_port);
438         return AVERROR_UNKNOWN;
439     }
440
441     s->color_format = 0;
442     for (i = 0; ; i++) {
443         INIT_STRUCT(video_port_format);
444         video_port_format.nIndex = i;
445         video_port_format.nPortIndex = s->in_port;
446         if (OMX_GetParameter(s->handle, OMX_IndexParamVideoPortFormat, &video_port_format) != OMX_ErrorNone)
447             break;
448         if (video_port_format.eColorFormat == OMX_COLOR_FormatYUV420Planar ||
449             video_port_format.eColorFormat == OMX_COLOR_FormatYUV420PackedPlanar) {
450             s->color_format = video_port_format.eColorFormat;
451             break;
452         }
453     }
454     if (s->color_format == 0) {
455         av_log(avctx, AV_LOG_ERROR, "No supported pixel formats (%d formats available)\n", i);
456         return AVERROR_UNKNOWN;
457     }
458
459     in_port_params.bEnabled   = OMX_TRUE;
460     in_port_params.bPopulated = OMX_FALSE;
461     in_port_params.eDomain    = OMX_PortDomainVideo;
462
463     in_port_params.format.video.pNativeRender         = NULL;
464     in_port_params.format.video.bFlagErrorConcealment = OMX_FALSE;
465     in_port_params.format.video.eColorFormat          = s->color_format;
466     s->stride     = avctx->width;
467     s->plane_size = avctx->height;
468     // If specific codecs need to manually override the stride/plane_size,
469     // that can be done here.
470     in_port_params.format.video.nStride      = s->stride;
471     in_port_params.format.video.nSliceHeight = s->plane_size;
472     in_port_params.format.video.nFrameWidth  = avctx->width;
473     in_port_params.format.video.nFrameHeight = avctx->height;
474     if (avctx->framerate.den > 0 && avctx->framerate.num > 0)
475         in_port_params.format.video.xFramerate = (1 << 16) * avctx->framerate.num / avctx->framerate.den;
476     else
477         in_port_params.format.video.xFramerate = (1 << 16) * avctx->time_base.den / avctx->time_base.num;
478
479     err = OMX_SetParameter(s->handle, OMX_IndexParamPortDefinition, &in_port_params);
480     CHECK(err);
481     err = OMX_GetParameter(s->handle, OMX_IndexParamPortDefinition, &in_port_params);
482     CHECK(err);
483     s->stride         = in_port_params.format.video.nStride;
484     s->plane_size     = in_port_params.format.video.nSliceHeight;
485     s->num_in_buffers = in_port_params.nBufferCountActual;
486
487     err = OMX_GetParameter(s->handle, OMX_IndexParamPortDefinition, &out_port_params);
488     out_port_params.bEnabled   = OMX_TRUE;
489     out_port_params.bPopulated = OMX_FALSE;
490     out_port_params.eDomain    = OMX_PortDomainVideo;
491     out_port_params.format.video.pNativeRender = NULL;
492     out_port_params.format.video.nFrameWidth   = avctx->width;
493     out_port_params.format.video.nFrameHeight  = avctx->height;
494     out_port_params.format.video.nStride       = 0;
495     out_port_params.format.video.nSliceHeight  = 0;
496     out_port_params.format.video.nBitrate      = avctx->bit_rate;
497     out_port_params.format.video.xFramerate    = in_port_params.format.video.xFramerate;
498     out_port_params.format.video.bFlagErrorConcealment  = OMX_FALSE;
499     if (avctx->codec->id == AV_CODEC_ID_MPEG4)
500         out_port_params.format.video.eCompressionFormat = OMX_VIDEO_CodingMPEG4;
501     else if (avctx->codec->id == AV_CODEC_ID_H264)
502         out_port_params.format.video.eCompressionFormat = OMX_VIDEO_CodingAVC;
503
504     err = OMX_SetParameter(s->handle, OMX_IndexParamPortDefinition, &out_port_params);
505     CHECK(err);
506     err = OMX_GetParameter(s->handle, OMX_IndexParamPortDefinition, &out_port_params);
507     CHECK(err);
508     s->num_out_buffers = out_port_params.nBufferCountActual;
509
510     INIT_STRUCT(vid_param_bitrate);
511     vid_param_bitrate.nPortIndex     = s->out_port;
512     vid_param_bitrate.eControlRate   = OMX_Video_ControlRateVariable;
513     vid_param_bitrate.nTargetBitrate = avctx->bit_rate;
514     err = OMX_SetParameter(s->handle, OMX_IndexParamVideoBitrate, &vid_param_bitrate);
515     if (err != OMX_ErrorNone)
516         av_log(avctx, AV_LOG_WARNING, "Unable to set video bitrate parameter\n");
517
518     if (avctx->codec->id == AV_CODEC_ID_H264) {
519         OMX_VIDEO_PARAM_AVCTYPE avc = { 0 };
520         INIT_STRUCT(avc);
521         avc.nPortIndex = s->out_port;
522         err = OMX_GetParameter(s->handle, OMX_IndexParamVideoAvc, &avc);
523         CHECK(err);
524         avc.nBFrames = 0;
525         avc.nPFrames = avctx->gop_size - 1;
526         err = OMX_SetParameter(s->handle, OMX_IndexParamVideoAvc, &avc);
527         CHECK(err);
528     }
529
530     err = OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateIdle, NULL);
531     CHECK(err);
532
533     s->in_buffer_headers  = av_mallocz(sizeof(OMX_BUFFERHEADERTYPE*) * s->num_in_buffers);
534     s->free_in_buffers    = av_mallocz(sizeof(OMX_BUFFERHEADERTYPE*) * s->num_in_buffers);
535     s->out_buffer_headers = av_mallocz(sizeof(OMX_BUFFERHEADERTYPE*) * s->num_out_buffers);
536     s->done_out_buffers   = av_mallocz(sizeof(OMX_BUFFERHEADERTYPE*) * s->num_out_buffers);
537     if (!s->in_buffer_headers || !s->free_in_buffers || !s->out_buffer_headers || !s->done_out_buffers)
538         return AVERROR(ENOMEM);
539     for (i = 0; i < s->num_in_buffers && err == OMX_ErrorNone; i++) {
540         if (s->input_zerocopy)
541             err = OMX_UseBuffer(s->handle, &s->in_buffer_headers[i], s->in_port, s, in_port_params.nBufferSize, NULL);
542         else
543             err = OMX_AllocateBuffer(s->handle, &s->in_buffer_headers[i],  s->in_port,  s, in_port_params.nBufferSize);
544         if (err == OMX_ErrorNone)
545             s->in_buffer_headers[i]->pAppPrivate = s->in_buffer_headers[i]->pOutputPortPrivate = NULL;
546     }
547     CHECK(err);
548     s->num_in_buffers = i;
549     for (i = 0; i < s->num_out_buffers && err == OMX_ErrorNone; i++)
550         err = OMX_AllocateBuffer(s->handle, &s->out_buffer_headers[i], s->out_port, s, out_port_params.nBufferSize);
551     CHECK(err);
552     s->num_out_buffers = i;
553
554     if (wait_for_state(s, OMX_StateIdle) < 0) {
555         av_log(avctx, AV_LOG_ERROR, "Didn't get OMX_StateIdle\n");
556         return AVERROR_UNKNOWN;
557     }
558     err = OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateExecuting, NULL);
559     CHECK(err);
560     if (wait_for_state(s, OMX_StateExecuting) < 0) {
561         av_log(avctx, AV_LOG_ERROR, "Didn't get OMX_StateExecuting\n");
562         return AVERROR_UNKNOWN;
563     }
564
565     for (i = 0; i < s->num_out_buffers && err == OMX_ErrorNone; i++)
566         err = OMX_FillThisBuffer(s->handle, s->out_buffer_headers[i]);
567     if (err != OMX_ErrorNone) {
568         for (; i < s->num_out_buffers; i++)
569             s->done_out_buffers[s->num_done_out_buffers++] = s->out_buffer_headers[i];
570     }
571     for (i = 0; i < s->num_in_buffers; i++)
572         s->free_in_buffers[s->num_free_in_buffers++] = s->in_buffer_headers[i];
573     return err != OMX_ErrorNone ? AVERROR_UNKNOWN : 0;
574 }
575
576 static av_cold void cleanup(OMXCodecContext *s)
577 {
578     int i, executing;
579
580     pthread_mutex_lock(&s->state_mutex);
581     executing = s->state == OMX_StateExecuting;
582     pthread_mutex_unlock(&s->state_mutex);
583
584     if (executing) {
585         OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateIdle, NULL);
586         wait_for_state(s, OMX_StateIdle);
587         OMX_SendCommand(s->handle, OMX_CommandStateSet, OMX_StateLoaded, NULL);
588         for (i = 0; i < s->num_in_buffers; i++) {
589             OMX_BUFFERHEADERTYPE *buffer = get_buffer(&s->input_mutex, &s->input_cond,
590                                                       &s->num_free_in_buffers, s->free_in_buffers, 1);
591             if (s->input_zerocopy)
592                 buffer->pBuffer = NULL;
593             OMX_FreeBuffer(s->handle, s->in_port, buffer);
594         }
595         for (i = 0; i < s->num_out_buffers; i++) {
596             OMX_BUFFERHEADERTYPE *buffer = get_buffer(&s->output_mutex, &s->output_cond,
597                                                       &s->num_done_out_buffers, s->done_out_buffers, 1);
598             OMX_FreeBuffer(s->handle, s->out_port, buffer);
599         }
600         wait_for_state(s, OMX_StateLoaded);
601     }
602     if (s->handle) {
603         s->omx_context->ptr_FreeHandle(s->handle);
604         s->handle = NULL;
605     }
606
607     omx_deinit(s->omx_context);
608     s->omx_context = NULL;
609     if (s->mutex_cond_inited) {
610         pthread_cond_destroy(&s->state_cond);
611         pthread_mutex_destroy(&s->state_mutex);
612         pthread_cond_destroy(&s->input_cond);
613         pthread_mutex_destroy(&s->input_mutex);
614         pthread_cond_destroy(&s->output_cond);
615         pthread_mutex_destroy(&s->output_mutex);
616         s->mutex_cond_inited = 0;
617     }
618     av_freep(&s->in_buffer_headers);
619     av_freep(&s->out_buffer_headers);
620     av_freep(&s->free_in_buffers);
621     av_freep(&s->done_out_buffers);
622     av_freep(&s->output_buf);
623 }
624
625 static av_cold int omx_encode_init(AVCodecContext *avctx)
626 {
627     OMXCodecContext *s = avctx->priv_data;
628     int ret = AVERROR_ENCODER_NOT_FOUND;
629     const char *role;
630     OMX_BUFFERHEADERTYPE *buffer;
631     OMX_ERRORTYPE err;
632
633 #if CONFIG_OMX_RPI
634     s->input_zerocopy = 1;
635 #endif
636
637     s->omx_context = omx_init(avctx, s->libname, s->libprefix);
638     if (!s->omx_context)
639         return AVERROR_ENCODER_NOT_FOUND;
640
641     pthread_mutex_init(&s->state_mutex, NULL);
642     pthread_cond_init(&s->state_cond, NULL);
643     pthread_mutex_init(&s->input_mutex, NULL);
644     pthread_cond_init(&s->input_cond, NULL);
645     pthread_mutex_init(&s->output_mutex, NULL);
646     pthread_cond_init(&s->output_cond, NULL);
647     s->mutex_cond_inited = 1;
648     s->avctx = avctx;
649     s->state = OMX_StateLoaded;
650     s->error = OMX_ErrorNone;
651
652     switch (avctx->codec->id) {
653     case AV_CODEC_ID_MPEG4:
654         role = "video_encoder.mpeg4";
655         break;
656     case AV_CODEC_ID_H264:
657         role = "video_encoder.avc";
658         break;
659     default:
660         return AVERROR(ENOSYS);
661     }
662
663     if ((ret = find_component(s->omx_context, avctx, role, s->component_name, sizeof(s->component_name))) < 0)
664         goto fail;
665
666     av_log(avctx, AV_LOG_INFO, "Using %s\n", s->component_name);
667
668     if ((ret = omx_component_init(avctx, role)) < 0)
669         goto fail;
670
671     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
672         while (1) {
673             buffer = get_buffer(&s->output_mutex, &s->output_cond,
674                                 &s->num_done_out_buffers, s->done_out_buffers, 1);
675             if (buffer->nFlags & OMX_BUFFERFLAG_CODECCONFIG) {
676                 if ((ret = av_reallocp(&avctx->extradata, avctx->extradata_size + buffer->nFilledLen + AV_INPUT_BUFFER_PADDING_SIZE)) < 0) {
677                     avctx->extradata_size = 0;
678                     goto fail;
679                 }
680                 memcpy(avctx->extradata + avctx->extradata_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen);
681                 avctx->extradata_size += buffer->nFilledLen;
682                 memset(avctx->extradata + avctx->extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
683             }
684             err = OMX_FillThisBuffer(s->handle, buffer);
685             if (err != OMX_ErrorNone) {
686                 append_buffer(&s->output_mutex, &s->output_cond,
687                               &s->num_done_out_buffers, s->done_out_buffers, buffer);
688                 av_log(avctx, AV_LOG_ERROR, "OMX_FillThisBuffer failed: %x\n", err);
689                 ret = AVERROR_UNKNOWN;
690                 goto fail;
691             }
692             if (avctx->codec->id == AV_CODEC_ID_H264) {
693                 // For H.264, the extradata can be returned in two separate buffers
694                 // (the videocore encoder on raspberry pi does this);
695                 // therefore check that we have got both SPS and PPS before continuing.
696                 int nals[32] = { 0 };
697                 int i;
698                 for (i = 0; i + 4 < avctx->extradata_size; i++) {
699                      if (!avctx->extradata[i + 0] &&
700                          !avctx->extradata[i + 1] &&
701                          !avctx->extradata[i + 2] &&
702                          avctx->extradata[i + 3] == 1) {
703                          nals[avctx->extradata[i + 4] & 0x1f]++;
704                      }
705                 }
706                 if (nals[NAL_SPS] && nals[NAL_PPS])
707                     break;
708             } else {
709                 if (avctx->extradata_size > 0)
710                     break;
711             }
712         }
713     }
714
715     return 0;
716 fail:
717     return ret;
718 }
719
720
721 static int omx_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
722                             const AVFrame *frame, int *got_packet)
723 {
724     OMXCodecContext *s = avctx->priv_data;
725     int ret = 0;
726     OMX_BUFFERHEADERTYPE* buffer;
727     OMX_ERRORTYPE err;
728
729     if (frame) {
730         uint8_t *dst[4];
731         int linesize[4];
732         int need_copy;
733         buffer = get_buffer(&s->input_mutex, &s->input_cond,
734                             &s->num_free_in_buffers, s->free_in_buffers, 1);
735
736         buffer->nFilledLen = av_image_fill_arrays(dst, linesize, buffer->pBuffer, avctx->pix_fmt, s->stride, s->plane_size, 1);
737
738         if (s->input_zerocopy) {
739             uint8_t *src[4] = { NULL };
740             int src_linesize[4];
741             av_image_fill_arrays(src, src_linesize, frame->data[0], avctx->pix_fmt, s->stride, s->plane_size, 1);
742             if (frame->linesize[0] == src_linesize[0] &&
743                 frame->linesize[1] == src_linesize[1] &&
744                 frame->linesize[2] == src_linesize[2] &&
745                 frame->data[1] == src[1] &&
746                 frame->data[2] == src[2]) {
747                 // If the input frame happens to have all planes stored contiguously,
748                 // with the right strides, just clone the frame and set the OMX
749                 // buffer header to point to it
750                 AVFrame *local = av_frame_clone(frame);
751                 if (!local) {
752                     // Return the buffer to the queue so it's not lost
753                     append_buffer(&s->input_mutex, &s->input_cond, &s->num_free_in_buffers, s->free_in_buffers, buffer);
754                     return AVERROR(ENOMEM);
755                 } else {
756                     buffer->pAppPrivate = local;
757                     buffer->pOutputPortPrivate = NULL;
758                     buffer->pBuffer = local->data[0];
759                     need_copy = 0;
760                 }
761             } else {
762                 // If not, we need to allocate a new buffer with the right
763                 // size and copy the input frame into it.
764                 uint8_t *buf = av_malloc(av_image_get_buffer_size(avctx->pix_fmt, s->stride, s->plane_size, 1));
765                 if (!buf) {
766                     // Return the buffer to the queue so it's not lost
767                     append_buffer(&s->input_mutex, &s->input_cond, &s->num_free_in_buffers, s->free_in_buffers, buffer);
768                     return AVERROR(ENOMEM);
769                 } else {
770                     buffer->pAppPrivate = buf;
771                     // Mark that pAppPrivate is an av_malloc'ed buffer, not an AVFrame
772                     buffer->pOutputPortPrivate = (void*) 1;
773                     buffer->pBuffer = buf;
774                     need_copy = 1;
775                     buffer->nFilledLen = av_image_fill_arrays(dst, linesize, buffer->pBuffer, avctx->pix_fmt, s->stride, s->plane_size, 1);
776                 }
777             }
778         } else {
779             need_copy = 1;
780         }
781         if (need_copy)
782             av_image_copy(dst, linesize, (const uint8_t**) frame->data, frame->linesize, avctx->pix_fmt, avctx->width, avctx->height);
783         buffer->nFlags = OMX_BUFFERFLAG_ENDOFFRAME;
784         buffer->nOffset = 0;
785         // Convert the timestamps to microseconds; some encoders can ignore
786         // the framerate and do VFR bit allocation based on timestamps.
787         buffer->nTimeStamp = to_omx_ticks(av_rescale_q(frame->pts, avctx->time_base, AV_TIME_BASE_Q));
788         err = OMX_EmptyThisBuffer(s->handle, buffer);
789         if (err != OMX_ErrorNone) {
790             append_buffer(&s->input_mutex, &s->input_cond, &s->num_free_in_buffers, s->free_in_buffers, buffer);
791             av_log(avctx, AV_LOG_ERROR, "OMX_EmptyThisBuffer failed: %x\n", err);
792             return AVERROR_UNKNOWN;
793         }
794         s->num_in_frames++;
795     }
796
797     while (!*got_packet && ret == 0) {
798         // Only wait for output if flushing and not all frames have been output
799         buffer = get_buffer(&s->output_mutex, &s->output_cond,
800                             &s->num_done_out_buffers, s->done_out_buffers,
801                             !frame && s->num_out_frames < s->num_in_frames);
802         if (!buffer)
803             break;
804
805         if (buffer->nFlags & OMX_BUFFERFLAG_CODECCONFIG && avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
806             if ((ret = av_reallocp(&avctx->extradata, avctx->extradata_size + buffer->nFilledLen + AV_INPUT_BUFFER_PADDING_SIZE)) < 0) {
807                 avctx->extradata_size = 0;
808                 goto end;
809             }
810             memcpy(avctx->extradata + avctx->extradata_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen);
811             avctx->extradata_size += buffer->nFilledLen;
812             memset(avctx->extradata + avctx->extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
813         } else {
814             if (buffer->nFlags & OMX_BUFFERFLAG_ENDOFFRAME)
815                 s->num_out_frames++;
816             if (!(buffer->nFlags & OMX_BUFFERFLAG_ENDOFFRAME) || !pkt->data) {
817                 // If the output packet isn't preallocated, just concatenate everything in our
818                 // own buffer
819                 int newsize = s->output_buf_size + buffer->nFilledLen + AV_INPUT_BUFFER_PADDING_SIZE;
820                 if ((ret = av_reallocp(&s->output_buf, newsize)) < 0) {
821                     s->output_buf_size = 0;
822                     goto end;
823                 }
824                 memcpy(s->output_buf + s->output_buf_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen);
825                 s->output_buf_size += buffer->nFilledLen;
826                 if (buffer->nFlags & OMX_BUFFERFLAG_ENDOFFRAME) {
827                     if ((ret = av_packet_from_data(pkt, s->output_buf, s->output_buf_size)) < 0) {
828                         av_freep(&s->output_buf);
829                         s->output_buf_size = 0;
830                         goto end;
831                     }
832                     s->output_buf = NULL;
833                     s->output_buf_size = 0;
834                 }
835             } else {
836                 // End of frame, and the caller provided a preallocated frame
837                 if ((ret = ff_alloc_packet(pkt, s->output_buf_size + buffer->nFilledLen)) < 0) {
838                     av_log(avctx, AV_LOG_ERROR, "Error getting output packet of size %d.\n",
839                            (int)(s->output_buf_size + buffer->nFilledLen));
840                     goto end;
841                 }
842                 memcpy(pkt->data, s->output_buf, s->output_buf_size);
843                 memcpy(pkt->data + s->output_buf_size, buffer->pBuffer + buffer->nOffset, buffer->nFilledLen);
844                 av_freep(&s->output_buf);
845                 s->output_buf_size = 0;
846             }
847             if (buffer->nFlags & OMX_BUFFERFLAG_ENDOFFRAME) {
848                 ret = pkt->size;
849                 pkt->pts = av_rescale_q(from_omx_ticks(buffer->nTimeStamp), AV_TIME_BASE_Q, avctx->time_base);
850                 // We don't currently enable B-frames for the encoders, so set
851                 // pkt->dts = pkt->pts. (The calling code behaves worse if the encoder
852                 // doesn't set the dts).
853                 pkt->dts = pkt->pts;
854                 if (buffer->nFlags & OMX_BUFFERFLAG_SYNCFRAME)
855                     pkt->flags |= AV_PKT_FLAG_KEY;
856                 *got_packet = 1;
857             }
858         }
859 end:
860         err = OMX_FillThisBuffer(s->handle, buffer);
861         if (err != OMX_ErrorNone) {
862             append_buffer(&s->output_mutex, &s->output_cond, &s->num_done_out_buffers, s->done_out_buffers, buffer);
863             av_log(avctx, AV_LOG_ERROR, "OMX_FillThisBuffer failed: %x\n", err);
864             ret = AVERROR_UNKNOWN;
865         }
866     }
867     return ret;
868 }
869
870 static av_cold int omx_encode_end(AVCodecContext *avctx)
871 {
872     OMXCodecContext *s = avctx->priv_data;
873
874     cleanup(s);
875     return 0;
876 }
877
878 #define OFFSET(x) offsetof(OMXCodecContext, x)
879 #define VDE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_ENCODING_PARAM
880 #define VE  AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
881 static const AVOption options[] = {
882     { "omx_libname", "OpenMAX library name", OFFSET(libname), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VDE },
883     { "omx_libprefix", "OpenMAX library prefix", OFFSET(libprefix), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VDE },
884     { "zerocopy", "Try to avoid copying input frames if possible", OFFSET(input_zerocopy), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
885     { NULL }
886 };
887
888 static const enum AVPixelFormat omx_encoder_pix_fmts[] = {
889     AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE
890 };
891
892 static const AVClass omx_mpeg4enc_class = {
893     .class_name = "mpeg4_omx",
894     .item_name  = av_default_item_name,
895     .option     = options,
896     .version    = LIBAVUTIL_VERSION_INT,
897 };
898 AVCodec ff_mpeg4_omx_encoder = {
899     .name             = "mpeg4_omx",
900     .long_name        = NULL_IF_CONFIG_SMALL("OpenMAX IL MPEG-4 video encoder"),
901     .type             = AVMEDIA_TYPE_VIDEO,
902     .id               = AV_CODEC_ID_MPEG4,
903     .priv_data_size   = sizeof(OMXCodecContext),
904     .init             = omx_encode_init,
905     .encode2          = omx_encode_frame,
906     .close            = omx_encode_end,
907     .pix_fmts         = omx_encoder_pix_fmts,
908     .capabilities     = AV_CODEC_CAP_DELAY,
909     .caps_internal    = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
910     .priv_class       = &omx_mpeg4enc_class,
911 };
912
913 static const AVClass omx_h264enc_class = {
914     .class_name = "h264_omx",
915     .item_name  = av_default_item_name,
916     .option     = options,
917     .version    = LIBAVUTIL_VERSION_INT,
918 };
919 AVCodec ff_h264_omx_encoder = {
920     .name             = "h264_omx",
921     .long_name        = NULL_IF_CONFIG_SMALL("OpenMAX IL H.264 video encoder"),
922     .type             = AVMEDIA_TYPE_VIDEO,
923     .id               = AV_CODEC_ID_H264,
924     .priv_data_size   = sizeof(OMXCodecContext),
925     .init             = omx_encode_init,
926     .encode2          = omx_encode_frame,
927     .close            = omx_encode_end,
928     .pix_fmts         = omx_encoder_pix_fmts,
929     .capabilities     = AV_CODEC_CAP_DELAY,
930     .caps_internal    = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
931     .priv_class       = &omx_h264enc_class,
932 };