FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mmaldec.c
Go to the documentation of this file.
1 /*
2  * MMAL Video Decoder
3  * Copyright (c) 2015 Rodger Combs
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * MMAL Video Decoder
25  */
26 
27 #include <bcm_host.h>
28 #include <interface/mmal/mmal.h>
29 #include <interface/mmal/util/mmal_util.h>
30 #include <interface/mmal/util/mmal_util_params.h>
31 #include <interface/mmal/util/mmal_default_components.h>
32 #include <interface/mmal/vc/mmal_vc_api.h>
33 
34 #include "avcodec.h"
35 #include "internal.h"
36 #include "libavutil/atomic.h"
37 #include "libavutil/avassert.h"
38 #include "libavutil/buffer.h"
39 #include "libavutil/common.h"
40 #include "libavutil/opt.h"
41 #include "libavutil/log.h"
42 
43 typedef struct FFBufferEntry {
45  void *data;
46  size_t length;
47  int64_t pts, dts;
48  int flags;
51 
52 // MMAL_POOL_T destroys all of its MMAL_BUFFER_HEADER_Ts. If we want correct
53 // refcounting for AVFrames, we can free the MMAL_POOL_T only after all AVFrames
54 // have been unreferenced.
55 typedef struct FFPoolRef {
56  volatile int refcount;
57  MMAL_POOL_T *pool;
58 } FFPoolRef;
59 
60 typedef struct FFBufferRef {
61  MMAL_BUFFER_HEADER_T *buffer;
63 } FFBufferRef;
64 
65 typedef struct MMALDecodeContext {
68 
70 
71  MMAL_COMPONENT_T *decoder;
72  MMAL_QUEUE_T *queue_decoded_frames;
73  MMAL_POOL_T *pool_in;
75 
76  // Waiting input packets. Because the libavcodec API requires decoding and
77  // returning packets in lockstep, it can happen that queue_decoded_frames
78  // contains almost all surfaces - then the decoder input queue can quickly
79  // fill up and won't accept new input either. Without consuming input, the
80  // libavcodec API can't return new frames, and we have a logical deadlock.
81  // This is avoided by queuing such buffers here.
83 
84  int64_t packets_sent;
85  int64_t frames_output;
87  int eos_sent;
89 
90 // Assume decoder is guaranteed to produce output after at least this many
91 // packets (where each packet contains 1 frame).
92 #define MAX_DELAYED_FRAMES 16
93 
95 {
96  if (ref && avpriv_atomic_int_add_and_fetch(&ref->refcount, -1) == 0) {
97  mmal_pool_destroy(ref->pool);
98  av_free(ref);
99  }
100 }
101 
102 static void ffmmal_release_frame(void *opaque, uint8_t *data)
103 {
104  FFBufferRef *ref = (void *)data;
105 
106  mmal_buffer_header_release(ref->buffer);
108 
109  av_free(ref);
110 }
111 
112 // Setup frame with a new reference to buffer. The buffer must have been
113 // allocated from the given pool.
115  MMAL_BUFFER_HEADER_T *buffer)
116 {
117  FFBufferRef *ref = av_mallocz(sizeof(*ref));
118  if (!ref)
119  return AVERROR(ENOMEM);
120 
121  ref->pool = pool;
122  ref->buffer = buffer;
123 
124  frame->buf[0] = av_buffer_create((void *)ref, sizeof(*ref),
127  if (!frame->buf[0]) {
128  av_free(ref);
129  return AVERROR(ENOMEM);
130  }
131 
133  mmal_buffer_header_acquire(buffer);
134 
135  frame->format = AV_PIX_FMT_MMAL;
136  frame->data[3] = (uint8_t *)ref->buffer;
137  return 0;
138 }
139 
141 {
142  MMALDecodeContext *ctx = avctx->priv_data;
143  MMAL_COMPONENT_T *decoder = ctx->decoder;
144  MMAL_BUFFER_HEADER_T *buffer;
145 
146  mmal_port_disable(decoder->input[0]);
147  mmal_port_disable(decoder->output[0]);
148  mmal_port_disable(decoder->control);
149 
150  mmal_port_flush(decoder->input[0]);
151  mmal_port_flush(decoder->output[0]);
152  mmal_port_flush(decoder->control);
153 
154  while ((buffer = mmal_queue_get(ctx->queue_decoded_frames)))
155  mmal_buffer_header_release(buffer);
156 
157  while (ctx->waiting_buffers) {
158  FFBufferEntry *buffer = ctx->waiting_buffers;
159 
160  ctx->waiting_buffers = buffer->next;
161 
162  av_buffer_unref(&buffer->ref);
163  av_free(buffer);
164  }
165  ctx->waiting_buffers_tail = NULL;
166 
167  ctx->frames_output = ctx->eos_received = ctx->eos_sent = ctx->packets_sent = 0;
168 }
169 
171 {
172  MMALDecodeContext *ctx = avctx->priv_data;
173 
174  if (ctx->decoder)
175  ffmmal_stop_decoder(avctx);
176 
177  mmal_component_destroy(ctx->decoder);
178  ctx->decoder = NULL;
179  mmal_queue_destroy(ctx->queue_decoded_frames);
180  mmal_pool_destroy(ctx->pool_in);
182 
183  if (ctx->bsfc)
185 
186  mmal_vc_deinit();
187 
188  return 0;
189 }
190 
191 static void input_callback(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
192 {
193  if (!buffer->cmd) {
194  AVBufferRef *buf = buffer->user_data;
195  av_buffer_unref(&buf);
196  }
197  mmal_buffer_header_release(buffer);
198 }
199 
200 static void output_callback(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
201 {
202  AVCodecContext *avctx = (AVCodecContext*)port->userdata;
203  MMALDecodeContext *ctx = avctx->priv_data;
204 
205  mmal_queue_put(ctx->queue_decoded_frames, buffer);
206 }
207 
208 static void control_port_cb(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
209 {
210  AVCodecContext *avctx = (AVCodecContext*)port->userdata;
211  MMAL_STATUS_T status;
212 
213  if (buffer->cmd == MMAL_EVENT_ERROR) {
214  status = *(uint32_t *)buffer->data;
215  av_log(avctx, AV_LOG_ERROR, "MMAL error %d on control port\n", (int)status);
216  } else {
217  char s[20];
218  av_get_codec_tag_string(s, sizeof(s), buffer->cmd);
219  av_log(avctx, AV_LOG_WARNING, "Unknown MMAL event %s on control port\n", s);
220  }
221 
222  mmal_buffer_header_release(buffer);
223 }
224 
225 // Feed free output buffers to the decoder.
227 {
228  MMALDecodeContext *ctx = avctx->priv_data;
229  MMAL_BUFFER_HEADER_T *buffer;
230  MMAL_STATUS_T status;
231 
232  if (!ctx->pool_out)
233  return AVERROR_UNKNOWN; // format change code failed with OOM previously
234 
235  while ((buffer = mmal_queue_get(ctx->pool_out->pool->queue))) {
236  if ((status = mmal_port_send_buffer(ctx->decoder->output[0], buffer))) {
237  mmal_buffer_header_release(buffer);
238  av_log(avctx, AV_LOG_ERROR, "MMAL error %d when sending output buffer.\n", (int)status);
239  return AVERROR_UNKNOWN;
240  }
241  }
242 
243  return 0;
244 }
245 
246 static enum AVColorSpace ffmmal_csp_to_av_csp(MMAL_FOURCC_T fourcc)
247 {
248  switch (fourcc) {
249  case MMAL_COLOR_SPACE_BT470_2_BG:
250  case MMAL_COLOR_SPACE_BT470_2_M:
251  case MMAL_COLOR_SPACE_ITUR_BT601: return AVCOL_SPC_BT470BG;
252  case MMAL_COLOR_SPACE_ITUR_BT709: return AVCOL_SPC_BT709;
253  case MMAL_COLOR_SPACE_FCC: return AVCOL_SPC_FCC;
254  case MMAL_COLOR_SPACE_SMPTE240M: return AVCOL_SPC_SMPTE240M;
255  default: return AVCOL_SPC_UNSPECIFIED;
256  }
257 }
258 
260 {
261  MMALDecodeContext *ctx = avctx->priv_data;
262  MMAL_STATUS_T status;
263  int ret = 0;
264  MMAL_COMPONENT_T *decoder = ctx->decoder;
265  MMAL_ES_FORMAT_T *format_out = decoder->output[0]->format;
266 
268  if (!(ctx->pool_out = av_mallocz(sizeof(*ctx->pool_out)))) {
269  ret = AVERROR(ENOMEM);
270  goto fail;
271  }
272  ctx->pool_out->refcount = 1;
273 
274  if (!format_out)
275  goto fail;
276 
277  if ((status = mmal_port_parameter_set_uint32(decoder->output[0], MMAL_PARAMETER_EXTRA_BUFFERS, ctx->extra_buffers)))
278  goto fail;
279 
280  if (avctx->pix_fmt == AV_PIX_FMT_MMAL) {
281  format_out->encoding = MMAL_ENCODING_OPAQUE;
282  } else {
283  format_out->encoding_variant = format_out->encoding = MMAL_ENCODING_I420;
284  }
285 
286  if ((status = mmal_port_format_commit(decoder->output[0])))
287  goto fail;
288 
289  if ((ret = ff_set_dimensions(avctx, format_out->es->video.crop.x + format_out->es->video.crop.width,
290  format_out->es->video.crop.y + format_out->es->video.crop.height)) < 0)
291  goto fail;
292 
293  if (format_out->es->video.par.num && format_out->es->video.par.den) {
294  avctx->sample_aspect_ratio.num = format_out->es->video.par.num;
295  avctx->sample_aspect_ratio.den = format_out->es->video.par.den;
296  }
297 
298  avctx->colorspace = ffmmal_csp_to_av_csp(format_out->es->video.color_space);
299 
300  decoder->output[0]->buffer_size =
301  FFMAX(decoder->output[0]->buffer_size_min, decoder->output[0]->buffer_size_recommended);
302  decoder->output[0]->buffer_num =
303  FFMAX(decoder->output[0]->buffer_num_min, decoder->output[0]->buffer_num_recommended) + ctx->extra_buffers;
304  ctx->pool_out->pool = mmal_pool_create(decoder->output[0]->buffer_num,
305  decoder->output[0]->buffer_size);
306  if (!ctx->pool_out->pool) {
307  ret = AVERROR(ENOMEM);
308  goto fail;
309  }
310 
311  return 0;
312 
313 fail:
314  return ret < 0 ? ret : AVERROR_UNKNOWN;
315 }
316 
318 {
319  MMALDecodeContext *ctx = avctx->priv_data;
320  MMAL_STATUS_T status;
321  MMAL_ES_FORMAT_T *format_in;
322  MMAL_COMPONENT_T *decoder;
323  int ret = 0;
324 
325  bcm_host_init();
326 
327  if (mmal_vc_init()) {
328  av_log(avctx, AV_LOG_ERROR, "Cannot initialize MMAL VC driver!\n");
329  return AVERROR(ENOSYS);
330  }
331 
332  if ((ret = ff_get_format(avctx, avctx->codec->pix_fmts)) < 0)
333  return ret;
334 
335  avctx->pix_fmt = ret;
336 
337  if ((status = mmal_component_create(MMAL_COMPONENT_DEFAULT_VIDEO_DECODER, &ctx->decoder)))
338  goto fail;
339 
340  decoder = ctx->decoder;
341 
342  format_in = decoder->input[0]->format;
343  format_in->type = MMAL_ES_TYPE_VIDEO;
344  format_in->encoding = MMAL_ENCODING_H264;
345  format_in->es->video.width = FFALIGN(avctx->width, 32);
346  format_in->es->video.height = FFALIGN(avctx->height, 16);
347  format_in->es->video.crop.width = avctx->width;
348  format_in->es->video.crop.height = avctx->height;
349  format_in->es->video.frame_rate.num = 24000;
350  format_in->es->video.frame_rate.den = 1001;
351  format_in->es->video.par.num = avctx->sample_aspect_ratio.num;
352  format_in->es->video.par.den = avctx->sample_aspect_ratio.den;
353  format_in->flags = MMAL_ES_FORMAT_FLAG_FRAMED;
354 
355  if (avctx->codec->id == AV_CODEC_ID_H264 && avctx->extradata && avctx->extradata[0] == 1) {
356  uint8_t *dummy_p;
357  int dummy_int;
358  ctx->bsfc = av_bitstream_filter_init("h264_mp4toannexb");
359  if (!ctx->bsfc) {
360  av_log(avctx, AV_LOG_ERROR, "Cannot open the h264_mp4toannexb BSF!\n");
361  ret = AVERROR(ENOSYS);
362  goto fail;
363  }
364  av_bitstream_filter_filter(ctx->bsfc, avctx, "private_spspps_buf", &dummy_p, &dummy_int, NULL, 0, 0);
365  } else if (avctx->extradata_size) {
366  if ((status = mmal_format_extradata_alloc(format_in, avctx->extradata_size)))
367  goto fail;
368  format_in->extradata_size = avctx->extradata_size;
369  memcpy(format_in->extradata, avctx->extradata, format_in->extradata_size);
370  }
371 
372  if ((status = mmal_port_format_commit(decoder->input[0])))
373  goto fail;
374 
375  decoder->input[0]->buffer_num =
376  FFMAX(decoder->input[0]->buffer_num_min, 20);
377  decoder->input[0]->buffer_size =
378  FFMAX(decoder->input[0]->buffer_size_min, 512 * 1024);
379  ctx->pool_in = mmal_pool_create(decoder->input[0]->buffer_num, 0);
380  if (!ctx->pool_in) {
381  ret = AVERROR(ENOMEM);
382  goto fail;
383  }
384 
385  if ((ret = ffmal_update_format(avctx)) < 0)
386  goto fail;
387 
388  ctx->queue_decoded_frames = mmal_queue_create();
389  if (!ctx->queue_decoded_frames)
390  goto fail;
391 
392  decoder->input[0]->userdata = (void*)avctx;
393  decoder->output[0]->userdata = (void*)avctx;
394  decoder->control->userdata = (void*)avctx;
395 
396  if ((status = mmal_port_enable(decoder->control, control_port_cb)))
397  goto fail;
398  if ((status = mmal_port_enable(decoder->input[0], input_callback)))
399  goto fail;
400  if ((status = mmal_port_enable(decoder->output[0], output_callback)))
401  goto fail;
402 
403  if ((status = mmal_component_enable(decoder)))
404  goto fail;
405 
406  return 0;
407 
408 fail:
409  ffmmal_close_decoder(avctx);
410  return ret < 0 ? ret : AVERROR_UNKNOWN;
411 }
412 
413 static void ffmmal_flush(AVCodecContext *avctx)
414 {
415  MMALDecodeContext *ctx = avctx->priv_data;
416  MMAL_COMPONENT_T *decoder = ctx->decoder;
417  MMAL_STATUS_T status;
418 
419  ffmmal_stop_decoder(avctx);
420 
421  if ((status = mmal_port_enable(decoder->control, control_port_cb)))
422  goto fail;
423  if ((status = mmal_port_enable(decoder->input[0], input_callback)))
424  goto fail;
425  if ((status = mmal_port_enable(decoder->output[0], output_callback)))
426  goto fail;
427 
428  return;
429 
430 fail:
431  av_log(avctx, AV_LOG_ERROR, "MMAL flush error: %i\n", (int)status);
432 }
433 
434 // Split packets and add them to the waiting_buffers list. We don't queue them
435 // immediately, because it can happen that the decoder is temporarily blocked
436 // (due to us not reading/returning enough output buffers) and won't accept
437 // new input. (This wouldn't be an issue if MMAL input buffers always were
438 // complete frames - then the input buffer just would have to be big enough.)
439 static int ffmmal_add_packet(AVCodecContext *avctx, AVPacket *avpkt)
440 {
441  MMALDecodeContext *ctx = avctx->priv_data;
442  AVBufferRef *buf = NULL;
443  int size = 0;
444  uint8_t *data = (uint8_t *)"";
445  uint8_t *start;
446  int ret = 0;
447 
448  if (avpkt->size) {
449  if (ctx->bsfc) {
450  uint8_t *tmp_data;
451  int tmp_size;
452  if ((ret = av_bitstream_filter_filter(ctx->bsfc, avctx, "private_spspps_buf",
453  &tmp_data, &tmp_size,
454  avpkt->data, avpkt->size,
455  avpkt->flags & AV_PKT_FLAG_KEY)) < 0)
456  goto done;
457  buf = av_buffer_create(tmp_data, tmp_size, NULL, NULL, 0);
458  } else {
459  if (avpkt->buf) {
460  buf = av_buffer_ref(avpkt->buf);
461  } else {
462  buf = av_buffer_alloc(avpkt->size);
463  if (buf)
464  memcpy(buf->data, avpkt->data, avpkt->size);
465  }
466  }
467  if (!buf) {
468  ret = AVERROR(ENOMEM);
469  goto done;
470  }
471  size = buf->size;
472  data = buf->data;
473  ctx->packets_sent++;
474  } else {
475  if (!ctx->packets_sent) {
476  // Short-cut the flush logic to avoid upsetting MMAL.
477  ctx->eos_sent = 1;
478  ctx->eos_received = 1;
479  goto done;
480  }
481  }
482 
483  start = data;
484 
485  do {
486  FFBufferEntry *buffer = av_mallocz(sizeof(*buffer));
487  if (!buffer) {
488  ret = AVERROR(ENOMEM);
489  goto done;
490  }
491 
492  buffer->data = data;
493  buffer->length = FFMIN(size, ctx->decoder->input[0]->buffer_size);
494 
495  if (data == start)
496  buffer->flags |= MMAL_BUFFER_HEADER_FLAG_FRAME_START;
497 
498  data += buffer->length;
499  size -= buffer->length;
500 
501  buffer->pts = avpkt->pts == AV_NOPTS_VALUE ? MMAL_TIME_UNKNOWN : avpkt->pts;
502  buffer->dts = avpkt->dts == AV_NOPTS_VALUE ? MMAL_TIME_UNKNOWN : avpkt->dts;
503 
504  if (!size)
505  buffer->flags |= MMAL_BUFFER_HEADER_FLAG_FRAME_END;
506 
507  if (!buffer->length) {
508  buffer->flags |= MMAL_BUFFER_HEADER_FLAG_EOS;
509  ctx->eos_sent = 1;
510  }
511 
512  if (buf) {
513  buffer->ref = av_buffer_ref(buf);
514  if (!buffer->ref) {
515  av_free(buffer);
516  ret = AVERROR(ENOMEM);
517  goto done;
518  }
519  }
520 
521  // Insert at end of the list
522  if (!ctx->waiting_buffers)
523  ctx->waiting_buffers = buffer;
524  if (ctx->waiting_buffers_tail)
527  } while (size);
528 
529 done:
530  av_buffer_unref(&buf);
531  return ret;
532 }
533 
534 // Move prepared/split packets from waiting_buffers to the MMAL decoder.
536 {
537  MMALDecodeContext *ctx = avctx->priv_data;
538 
539  while (ctx->waiting_buffers) {
540  MMAL_BUFFER_HEADER_T *mbuffer;
542  MMAL_STATUS_T status;
543 
544  mbuffer = mmal_queue_get(ctx->pool_in->queue);
545  if (!mbuffer)
546  return 0;
547 
548  buffer = ctx->waiting_buffers;
549 
550  mmal_buffer_header_reset(mbuffer);
551  mbuffer->cmd = 0;
552  mbuffer->pts = buffer->pts;
553  mbuffer->dts = buffer->dts;
554  mbuffer->flags = buffer->flags;
555  mbuffer->data = buffer->data;
556  mbuffer->length = buffer->length;
557  mbuffer->user_data = buffer->ref;
558  mbuffer->alloc_size = ctx->decoder->input[0]->buffer_size;
559 
560  if ((status = mmal_port_send_buffer(ctx->decoder->input[0], mbuffer))) {
561  mmal_buffer_header_release(mbuffer);
562  av_buffer_unref(&buffer->ref);
563  }
564 
565  // Remove from start of the list
566  ctx->waiting_buffers = buffer->next;
567  if (ctx->waiting_buffers_tail == buffer)
568  ctx->waiting_buffers_tail = NULL;
569  av_free(buffer);
570 
571  if (status) {
572  av_log(avctx, AV_LOG_ERROR, "MMAL error %d when sending input\n", (int)status);
573  return AVERROR_UNKNOWN;
574  }
575  }
576 
577  return 0;
578 }
579 
581  MMAL_BUFFER_HEADER_T *buffer)
582 {
583  MMALDecodeContext *ctx = avctx->priv_data;
584  int ret = 0;
585 
586  if (avctx->pix_fmt == AV_PIX_FMT_MMAL) {
587  if (!ctx->pool_out)
588  return AVERROR_UNKNOWN; // format change code failed with OOM previously
589 
590  if ((ret = ff_decode_frame_props(avctx, frame)) < 0)
591  goto done;
592 
593  if ((ret = ffmmal_set_ref(frame, ctx->pool_out, buffer)) < 0)
594  goto done;
595  } else {
596  int w = FFALIGN(avctx->width, 32);
597  int h = FFALIGN(avctx->height, 16);
598  char *ptr;
599  int plane;
600  int i;
601 
602  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
603  goto done;
604 
605  ptr = buffer->data + buffer->type->video.offset[0];
606  for (i = 0; i < avctx->height; i++)
607  memcpy(frame->data[0] + frame->linesize[0] * i, ptr + w * i, avctx->width);
608 
609  ptr += w * h;
610 
611  for (plane = 1; plane < 3; plane++) {
612  for (i = 0; i < avctx->height / 2; i++)
613  memcpy(frame->data[plane] + frame->linesize[plane] * i, ptr + w / 2 * i, (avctx->width + 1) / 2);
614  ptr += w / 2 * h / 2;
615  }
616  }
617 
618  if (buffer->pts != MMAL_TIME_UNKNOWN) {
619  frame->pkt_pts = buffer->pts;
620  frame->pts = buffer->pts;
621  }
622 
623 done:
624  return ret;
625 }
626 
627 // Fetch a decoded buffer and place it into the frame parameter.
628 static int ffmmal_read_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame)
629 {
630  MMALDecodeContext *ctx = avctx->priv_data;
631  MMAL_BUFFER_HEADER_T *buffer = NULL;
632  MMAL_STATUS_T status = 0;
633  int ret = 0;
634 
635  if (ctx->eos_received)
636  goto done;
637 
638  while (1) {
639  // To ensure decoding in lockstep with a constant delay between fed packets
640  // and output frames, we always wait until an output buffer is available.
641  // Except during start we don't know after how many input packets the decoder
642  // is going to return the first buffer, and we can't distinguish decoder
643  // being busy from decoder waiting for input. So just poll at the start and
644  // keep feeding new data to the buffer.
645  // We are pretty sure the decoder will produce output if we sent more input
646  // frames than what a h264 decoder could logically delay. This avoids too
647  // excessive buffering.
648  // We also wait if we sent eos, but didn't receive it yet (think of decoding
649  // stream with a very low number of frames).
650  if (ctx->frames_output || ctx->packets_sent > MAX_DELAYED_FRAMES ||
651  (ctx->packets_sent && ctx->eos_sent)) {
652  // MMAL will ignore broken input packets, which means the frame we
653  // expect here may never arrive. Dealing with this correctly is
654  // complicated, so here's a hack to avoid that it freezes forever
655  // in this unlikely situation.
656  buffer = mmal_queue_timedwait(ctx->queue_decoded_frames, 100);
657  if (!buffer) {
658  av_log(avctx, AV_LOG_ERROR, "Did not get output frame from MMAL.\n");
659  ret = AVERROR_UNKNOWN;
660  goto done;
661  }
662  } else {
663  buffer = mmal_queue_get(ctx->queue_decoded_frames);
664  if (!buffer)
665  goto done;
666  }
667 
668  ctx->eos_received |= !!(buffer->flags & MMAL_BUFFER_HEADER_FLAG_EOS);
669  if (ctx->eos_received)
670  goto done;
671 
672  if (buffer->cmd == MMAL_EVENT_FORMAT_CHANGED) {
673  MMAL_COMPONENT_T *decoder = ctx->decoder;
674  MMAL_EVENT_FORMAT_CHANGED_T *ev = mmal_event_format_changed_get(buffer);
675  MMAL_BUFFER_HEADER_T *stale_buffer;
676 
677  av_log(avctx, AV_LOG_INFO, "Changing output format.\n");
678 
679  if ((status = mmal_port_disable(decoder->output[0])))
680  goto done;
681 
682  while ((stale_buffer = mmal_queue_get(ctx->queue_decoded_frames)))
683  mmal_buffer_header_release(stale_buffer);
684 
685  mmal_format_copy(decoder->output[0]->format, ev->format);
686 
687  if ((ret = ffmal_update_format(avctx)) < 0)
688  goto done;
689 
690  if ((status = mmal_port_enable(decoder->output[0], output_callback)))
691  goto done;
692 
693  if ((ret = ffmmal_fill_output_port(avctx)) < 0)
694  goto done;
695 
696  if ((ret = ffmmal_fill_input_port(avctx)) < 0)
697  goto done;
698 
699  mmal_buffer_header_release(buffer);
700  continue;
701  } else if (buffer->cmd) {
702  char s[20];
703  av_get_codec_tag_string(s, sizeof(s), buffer->cmd);
704  av_log(avctx, AV_LOG_WARNING, "Unknown MMAL event %s on output port\n", s);
705  goto done;
706  } else if (buffer->length == 0) {
707  // Unused output buffer that got drained after format change.
708  mmal_buffer_header_release(buffer);
709  continue;
710  }
711 
712  ctx->frames_output++;
713 
714  if ((ret = ffmal_copy_frame(avctx, frame, buffer)) < 0)
715  goto done;
716 
717  *got_frame = 1;
718  break;
719  }
720 
721 done:
722  if (buffer)
723  mmal_buffer_header_release(buffer);
724  if (status && ret >= 0)
725  ret = AVERROR_UNKNOWN;
726  return ret;
727 }
728 
729 static int ffmmal_decode(AVCodecContext *avctx, void *data, int *got_frame,
730  AVPacket *avpkt)
731 {
732  AVFrame *frame = data;
733  int ret = 0;
734 
735  if ((ret = ffmmal_add_packet(avctx, avpkt)) < 0)
736  return ret;
737 
738  if ((ret = ffmmal_fill_input_port(avctx)) < 0)
739  return ret;
740 
741  if ((ret = ffmmal_fill_output_port(avctx)) < 0)
742  return ret;
743 
744  if ((ret = ffmmal_read_frame(avctx, frame, got_frame)) < 0)
745  return ret;
746 
747  // ffmmal_read_frame() can block for a while. Since the decoder is
748  // asynchronous, it's a good idea to fill the ports again.
749 
750  if ((ret = ffmmal_fill_output_port(avctx)) < 0)
751  return ret;
752 
753  if ((ret = ffmmal_fill_input_port(avctx)) < 0)
754  return ret;
755 
756  return ret;
757 }
758 
760  .name = "h264_mmal",
761  .type = AVMEDIA_TYPE_VIDEO,
762  .id = AV_CODEC_ID_H264,
763  .pix_fmt = AV_PIX_FMT_MMAL,
764 };
765 
766 static const AVOption options[]={
767  {"extra_buffers", "extra buffers", offsetof(MMALDecodeContext, extra_buffers), AV_OPT_TYPE_INT, {.i64 = 10}, 0, 256, 0},
768  {NULL}
769 };
770 
771 static const AVClass ffmmaldec_class = {
772  .class_name = "mmaldec",
773  .option = options,
774  .version = LIBAVUTIL_VERSION_INT,
775 };
776 
778  .name = "h264_mmal",
779  .long_name = NULL_IF_CONFIG_SMALL("h264 (mmal)"),
780  .type = AVMEDIA_TYPE_VIDEO,
781  .id = AV_CODEC_ID_H264,
782  .priv_data_size = sizeof(MMALDecodeContext),
784  .close = ffmmal_close_decoder,
786  .flush = ffmmal_flush,
787  .priv_class = &ffmmaldec_class,
788  .capabilities = AV_CODEC_CAP_DELAY,
789  .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MMAL,
792 };
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
Definition: pixfmt.h:519
int plane
Definition: avisynth_c.h:291
#define NULL
Definition: coverity.c:32
const struct AVCodec * codec
Definition: avcodec.h:1511
#define avpriv_atomic_int_add_and_fetch
Definition: atomic_gcc.h:50
const char * s
Definition: avisynth_c.h:631
MMAL_POOL_T * pool
Definition: mmaldec.c:57
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:124
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVOption.
Definition: opt.h:255
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
static void flush(AVCodecContext *avctx)
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
Definition: utils.c:216
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:441
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 ...
Definition: pixfmt.h:523
FFPoolRef * pool
Definition: mmaldec.c:62
int num
numerator
Definition: rational.h:44
int size
Definition: avcodec.h:1424
AVHWAccel ff_h264_mmal_hwaccel
Definition: mmaldec.c:759
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:1902
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1722
static int ffmmal_fill_output_port(AVCodecContext *avctx)
Definition: mmaldec.c:226
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
Definition: utils.c:3055
int64_t dts
Definition: mmaldec.c:47
AVCodec.
Definition: avcodec.h:3472
static int ffmmal_fill_input_port(AVCodecContext *avctx)
Definition: mmaldec.c:535
static int ffmmal_decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: mmaldec.c:729
#define FFALIGN(x, a)
Definition: common.h:86
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:882
uint8_t
#define av_cold
Definition: attributes.h:74
AVOptions.
MMAL_BUFFER_HEADER_T * buffer
Definition: mmaldec.c:61
AVColorSpace
YUV colorspace type.
Definition: pixfmt.h:517
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
Set various frame properties from the codec context / packet data.
Definition: utils.c:875
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:257
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1617
static AVFrame * frame
static void ffmmal_flush(AVCodecContext *avctx)
Definition: mmaldec.c:413
uint8_t * data
Definition: avcodec.h:1423
static av_cold int ffmmal_init_decoder(AVCodecContext *avctx)
Definition: mmaldec.c:317
static const AVOption options[]
Definition: mmaldec.c:766
static av_cold int ffmmal_close_decoder(AVCodecContext *avctx)
Definition: mmaldec.c:170
#define AV_BUFFER_FLAG_READONLY
Always treat the buffer as read-only, even when it has only one reference.
Definition: buffer.h:113
MMAL_POOL_T * pool_in
Definition: mmaldec.c:73
ptrdiff_t size
Definition: opengl_enc.c:101
static int ffmmal_add_packet(AVCodecContext *avctx, AVPacket *avpkt)
Definition: mmaldec.c:439
volatile int refcount
Definition: mmaldec.c:56
#define av_log(a,...)
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1469
enum AVCodecID id
Definition: avcodec.h:3486
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static void output_callback(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
Definition: mmaldec.c:200
#define AVERROR(e)
Definition: error.h:43
static void ffmmal_poolref_unref(FFPoolRef *ref)
Definition: mmaldec.c:94
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
void av_bitstream_filter_close(AVBitStreamFilterContext *bsf)
Release bitstream filter context.
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1406
simple assert() macros that are a bit more flexible than ISO C assert().
static int ffmmal_set_ref(AVFrame *frame, FFPoolRef *pool, MMAL_BUFFER_HEADER_T *buffer)
Definition: mmaldec.c:114
FFBufferEntry * waiting_buffers_tail
Definition: mmaldec.c:82
const char * name
Name of the codec implementation.
Definition: avcodec.h:3479
AVBufferRef * av_buffer_create(uint8_t *data, int size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
Definition: buffer.c:28
#define FFMAX(a, b)
Definition: common.h:79
Libavcodec external API header.
#define fail()
Definition: checkasm.h:57
static void control_port_cb(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
Definition: mmaldec.c:208
AVBufferRef * ref
Definition: mmaldec.c:44
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1429
size_t length
Definition: mmaldec.c:46
static int ffmal_copy_frame(AVCodecContext *avctx, AVFrame *frame, MMAL_BUFFER_HEADER_T *buffer)
Definition: mmaldec.c:580
AVClass * av_class
Definition: mmaldec.c:66
static enum AVColorSpace ffmmal_csp_to_av_csp(MMAL_FOURCC_T fourcc)
Definition: mmaldec.c:246
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3493
FFPoolRef * pool_out
Definition: mmaldec.c:74
static const AVClass ffmmaldec_class
Definition: mmaldec.c:771
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:3583
#define FFMIN(a, b)
Definition: common.h:81
FFBufferEntry * waiting_buffers
Definition: mmaldec.c:82
int64_t frames_output
Definition: mmaldec.c:85
static const chunk_decoder decoder[8]
Definition: dfa.c:327
int width
picture width / height.
Definition: avcodec.h:1681
AVBitStreamFilterContext * av_bitstream_filter_init(const char *name)
Create and initialize a bitstream filter context given a bitstream filter name.
#define MAX_DELAYED_FRAMES
Definition: mmaldec.c:92
AVCodec ff_h264_mmal_decoder
Definition: mmaldec.c:777
FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
Definition: pixfmt.h:522
static void ffmmal_stop_decoder(AVCodecContext *avctx)
Definition: mmaldec.c:140
MMAL_QUEUE_T * queue_decoded_frames
Definition: mmaldec.c:72
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Definition: utils.c:1210
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:232
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe)
Filter bitstream.
struct FFBufferEntry * next
Definition: mmaldec.c:49
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:66
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
main external API structure.
Definition: avcodec.h:1502
uint8_t * data
The data buffer.
Definition: buffer.h:89
void * data
Definition: mmaldec.c:45
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: utils.c:1040
static void input_callback(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
Definition: mmaldec.c:191
void * buf
Definition: avisynth_c.h:553
int extradata_size
Definition: avcodec.h:1618
Describe the class of an AVClass context structure.
Definition: log.h:67
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:2230
refcounted data buffer API
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:209
int64_t pkt_pts
PTS copied from the AVPacket that was decoded to produce this frame.
Definition: frame.h:262
int size
Size of data in bytes.
Definition: buffer.h:93
static int ffmmal_read_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame)
Definition: mmaldec.c:628
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
int64_t packets_sent
Definition: mmaldec.c:84
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:523
A reference to a data buffer.
Definition: buffer.h:81
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
common internal api header.
common internal and external API header
if(ret< 0)
Definition: vf_mcdeint.c:280
static int ffmal_update_format(AVCodecContext *avctx)
Definition: mmaldec.c:259
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:92
int den
denominator
Definition: rational.h:45
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:71
static void ffmmal_release_frame(void *opaque, uint8_t *data)
Definition: mmaldec.c:102
void * priv_data
Definition: avcodec.h:1544
#define av_free(p)
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1422
void INT64 start
Definition: avisynth_c.h:553
AVBitStreamFilterContext * bsfc
Definition: mmaldec.c:69
HW acceleration though MMAL, data[3] contains a pointer to the MMAL_BUFFER_HEADER_T structure...
Definition: pixfmt.h:266
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1400
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
MMAL_COMPONENT_T * decoder
Definition: mmaldec.c:71
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1416
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:240
GLuint buffer
Definition: opengl_enc.c:102
int64_t pts
Definition: mmaldec.c:47