2 * RockChip MPP Video Decoder
3 * Copyright (c) 2017 Lionel CHAZALLON
5 * This file is part of FFmpeg.
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.
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.
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
22 #include <drm_fourcc.h>
24 #include <rockchip/mpp_buffer.h>
25 #include <rockchip/rk_mpi.h>
33 #include "libavutil/buffer.h"
34 #include "libavutil/common.h"
35 #include "libavutil/frame.h"
36 #include "libavutil/hwcontext.h"
37 #include "libavutil/hwcontext_drm.h"
38 #include "libavutil/imgutils.h"
39 #include "libavutil/log.h"
41 #define RECEIVE_FRAME_TIMEOUT 100
42 #define FRAMEGROUP_MAX_FRAMES 16
43 #define INPUT_MAX_PACKETS 4
48 MppBufferGroup frame_group;
53 AVBufferRef *frames_ref;
54 AVBufferRef *device_ref;
59 AVBufferRef *decoder_ref;
64 AVBufferRef *decoder_ref;
67 static MppCodingType rkmpp_get_codingtype(AVCodecContext *avctx)
69 switch (avctx->codec_id) {
70 case AV_CODEC_ID_H264: return MPP_VIDEO_CodingAVC;
71 case AV_CODEC_ID_HEVC: return MPP_VIDEO_CodingHEVC;
72 case AV_CODEC_ID_VP8: return MPP_VIDEO_CodingVP8;
73 case AV_CODEC_ID_VP9: return MPP_VIDEO_CodingVP9;
74 default: return MPP_VIDEO_CodingUnused;
78 static uint32_t rkmpp_get_frameformat(MppFrameFormat mppformat)
81 case MPP_FMT_YUV420SP: return DRM_FORMAT_NV12;
82 #ifdef DRM_FORMAT_NV12_10
83 case MPP_FMT_YUV420SP_10BIT: return DRM_FORMAT_NV12_10;
89 static int rkmpp_write_data(AVCodecContext *avctx, uint8_t *buffer, int size, int64_t pts)
91 RKMPPDecodeContext *rk_context = avctx->priv_data;
92 RKMPPDecoder *decoder = (RKMPPDecoder *)rk_context->decoder_ref->data;
96 // create the MPP packet
97 ret = mpp_packet_init(&packet, buffer, size);
99 av_log(avctx, AV_LOG_ERROR, "Failed to init MPP packet (code = %d)\n", ret);
100 return AVERROR_UNKNOWN;
103 mpp_packet_set_pts(packet, pts);
106 mpp_packet_set_eos(packet);
108 ret = decoder->mpi->decode_put_packet(decoder->ctx, packet);
110 if (ret == MPP_ERR_BUFFER_FULL) {
111 av_log(avctx, AV_LOG_DEBUG, "Buffer full writing %d bytes to decoder\n", size);
112 ret = AVERROR(EAGAIN);
114 ret = AVERROR_UNKNOWN;
117 av_log(avctx, AV_LOG_DEBUG, "Wrote %d bytes to decoder\n", size);
119 mpp_packet_deinit(&packet);
124 static int rkmpp_close_decoder(AVCodecContext *avctx)
126 RKMPPDecodeContext *rk_context = avctx->priv_data;
127 av_buffer_unref(&rk_context->decoder_ref);
131 static void rkmpp_release_decoder(void *opaque, uint8_t *data)
133 RKMPPDecoder *decoder = (RKMPPDecoder *)data;
136 decoder->mpi->reset(decoder->ctx);
137 mpp_destroy(decoder->ctx);
141 if (decoder->frame_group) {
142 mpp_buffer_group_put(decoder->frame_group);
143 decoder->frame_group = NULL;
146 av_buffer_unref(&decoder->frames_ref);
147 av_buffer_unref(&decoder->device_ref);
152 static int rkmpp_init_decoder(AVCodecContext *avctx)
154 RKMPPDecodeContext *rk_context = avctx->priv_data;
155 RKMPPDecoder *decoder = NULL;
156 MppCodingType codectype = MPP_VIDEO_CodingUnused;
161 avctx->pix_fmt = AV_PIX_FMT_DRM_PRIME;
163 // create a decoder and a ref to it
164 decoder = av_mallocz(sizeof(RKMPPDecoder));
166 ret = AVERROR(ENOMEM);
170 rk_context->decoder_ref = av_buffer_create((uint8_t *)decoder, sizeof(*decoder), rkmpp_release_decoder,
171 NULL, AV_BUFFER_FLAG_READONLY);
172 if (!rk_context->decoder_ref) {
174 ret = AVERROR(ENOMEM);
178 av_log(avctx, AV_LOG_DEBUG, "Initializing RKMPP decoder.\n");
180 codectype = rkmpp_get_codingtype(avctx);
181 if (codectype == MPP_VIDEO_CodingUnused) {
182 av_log(avctx, AV_LOG_ERROR, "Unknown codec type (%d).\n", avctx->codec_id);
183 ret = AVERROR_UNKNOWN;
187 ret = mpp_check_support_format(MPP_CTX_DEC, codectype);
189 av_log(avctx, AV_LOG_ERROR, "Codec type (%d) unsupported by MPP\n", avctx->codec_id);
190 ret = AVERROR_UNKNOWN;
194 // Create the MPP context
195 ret = mpp_create(&decoder->ctx, &decoder->mpi);
197 av_log(avctx, AV_LOG_ERROR, "Failed to create MPP context (code = %d).\n", ret);
198 ret = AVERROR_UNKNOWN;
203 ret = mpp_init(decoder->ctx, MPP_CTX_DEC, codectype);
205 av_log(avctx, AV_LOG_ERROR, "Failed to initialize MPP context (code = %d).\n", ret);
206 ret = AVERROR_UNKNOWN;
210 // make decode calls blocking with a timeout
211 paramS32 = MPP_POLL_BLOCK;
212 ret = decoder->mpi->control(decoder->ctx, MPP_SET_OUTPUT_BLOCK, ¶mS32);
214 av_log(avctx, AV_LOG_ERROR, "Failed to set blocking mode on MPI (code = %d).\n", ret);
215 ret = AVERROR_UNKNOWN;
219 paramS64 = RECEIVE_FRAME_TIMEOUT;
220 ret = decoder->mpi->control(decoder->ctx, MPP_SET_OUTPUT_BLOCK_TIMEOUT, ¶mS64);
222 av_log(avctx, AV_LOG_ERROR, "Failed to set block timeout on MPI (code = %d).\n", ret);
223 ret = AVERROR_UNKNOWN;
227 ret = mpp_buffer_group_get_internal(&decoder->frame_group, MPP_BUFFER_TYPE_ION);
229 av_log(avctx, AV_LOG_ERROR, "Failed to retrieve buffer group (code = %d)\n", ret);
230 ret = AVERROR_UNKNOWN;
234 ret = decoder->mpi->control(decoder->ctx, MPP_DEC_SET_EXT_BUF_GROUP, decoder->frame_group);
236 av_log(avctx, AV_LOG_ERROR, "Failed to assign buffer group (code = %d)\n", ret);
237 ret = AVERROR_UNKNOWN;
241 ret = mpp_buffer_group_limit_config(decoder->frame_group, 0, FRAMEGROUP_MAX_FRAMES);
243 av_log(avctx, AV_LOG_ERROR, "Failed to set buffer group limit (code = %d)\n", ret);
244 ret = AVERROR_UNKNOWN;
248 decoder->first_packet = 1;
250 av_log(avctx, AV_LOG_DEBUG, "RKMPP decoder initialized successfully.\n");
252 decoder->device_ref = av_hwdevice_ctx_alloc(AV_HWDEVICE_TYPE_DRM);
253 if (!decoder->device_ref) {
254 ret = AVERROR(ENOMEM);
257 ret = av_hwdevice_ctx_init(decoder->device_ref);
264 av_log(avctx, AV_LOG_ERROR, "Failed to initialize RKMPP decoder.\n");
265 rkmpp_close_decoder(avctx);
269 static int rkmpp_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
271 RKMPPDecodeContext *rk_context = avctx->priv_data;
272 RKMPPDecoder *decoder = (RKMPPDecoder *)rk_context->decoder_ref->data;
277 av_log(avctx, AV_LOG_DEBUG, "End of stream.\n");
278 decoder->eos_reached = 1;
279 ret = rkmpp_write_data(avctx, NULL, 0, 0);
281 av_log(avctx, AV_LOG_ERROR, "Failed to send EOS to decoder (code = %d)\n", ret);
285 // on first packet, send extradata
286 if (decoder->first_packet) {
287 if (avctx->extradata_size) {
288 ret = rkmpp_write_data(avctx, avctx->extradata,
289 avctx->extradata_size,
292 av_log(avctx, AV_LOG_ERROR, "Failed to write extradata to decoder (code = %d)\n", ret);
296 decoder->first_packet = 0;
300 ret = rkmpp_write_data(avctx, avpkt->data, avpkt->size, avpkt->pts);
301 if (ret && ret!=AVERROR(EAGAIN))
302 av_log(avctx, AV_LOG_ERROR, "Failed to write data to decoder (code = %d)\n", ret);
307 static void rkmpp_release_frame(void *opaque, uint8_t *data)
309 AVDRMFrameDescriptor *desc = (AVDRMFrameDescriptor *)data;
310 AVBufferRef *framecontextref = (AVBufferRef *)opaque;
311 RKMPPFrameContext *framecontext = (RKMPPFrameContext *)framecontextref->data;
313 mpp_frame_deinit(&framecontext->frame);
314 av_buffer_unref(&framecontext->decoder_ref);
315 av_buffer_unref(&framecontextref);
320 static int rkmpp_retrieve_frame(AVCodecContext *avctx, AVFrame *frame)
322 RKMPPDecodeContext *rk_context = avctx->priv_data;
323 RKMPPDecoder *decoder = (RKMPPDecoder *)rk_context->decoder_ref->data;
324 RKMPPFrameContext *framecontext = NULL;
325 AVBufferRef *framecontextref = NULL;
327 MppFrame mppframe = NULL;
328 MppBuffer buffer = NULL;
329 AVDRMFrameDescriptor *desc = NULL;
330 AVDRMLayerDescriptor *layer = NULL;
332 MppFrameFormat mppformat;
335 ret = decoder->mpi->decode_get_frame(decoder->ctx, &mppframe);
336 if (ret != MPP_OK && ret != MPP_ERR_TIMEOUT) {
337 av_log(avctx, AV_LOG_ERROR, "Failed to get a frame from MPP (code = %d)\n", ret);
342 // Check whether we have a special frame or not
343 if (mpp_frame_get_info_change(mppframe)) {
344 AVHWFramesContext *hwframes;
346 av_log(avctx, AV_LOG_INFO, "Decoder noticed an info change (%dx%d), format=%d\n",
347 (int)mpp_frame_get_width(mppframe), (int)mpp_frame_get_height(mppframe),
348 (int)mpp_frame_get_fmt(mppframe));
350 avctx->width = mpp_frame_get_width(mppframe);
351 avctx->height = mpp_frame_get_height(mppframe);
353 decoder->mpi->control(decoder->ctx, MPP_DEC_SET_INFO_CHANGE_READY, NULL);
355 av_buffer_unref(&decoder->frames_ref);
357 decoder->frames_ref = av_hwframe_ctx_alloc(decoder->device_ref);
358 if (!decoder->frames_ref) {
359 ret = AVERROR(ENOMEM);
363 mppformat = mpp_frame_get_fmt(mppframe);
364 drmformat = rkmpp_get_frameformat(mppformat);
366 hwframes = (AVHWFramesContext*)decoder->frames_ref->data;
367 hwframes->format = AV_PIX_FMT_DRM_PRIME;
368 hwframes->sw_format = drmformat == DRM_FORMAT_NV12 ? AV_PIX_FMT_NV12 : AV_PIX_FMT_NONE;
369 hwframes->width = avctx->width;
370 hwframes->height = avctx->height;
371 ret = av_hwframe_ctx_init(decoder->frames_ref);
375 // here decoder is fully initialized, we need to feed it again with data
376 ret = AVERROR(EAGAIN);
378 } else if (mpp_frame_get_eos(mppframe)) {
379 av_log(avctx, AV_LOG_DEBUG, "Received a EOS frame.\n");
380 decoder->eos_reached = 1;
383 } else if (mpp_frame_get_discard(mppframe)) {
384 av_log(avctx, AV_LOG_DEBUG, "Received a discard frame.\n");
385 ret = AVERROR(EAGAIN);
387 } else if (mpp_frame_get_errinfo(mppframe)) {
388 av_log(avctx, AV_LOG_ERROR, "Received a errinfo frame.\n");
389 ret = AVERROR_UNKNOWN;
393 // here we should have a valid frame
394 av_log(avctx, AV_LOG_DEBUG, "Received a frame.\n");
396 // setup general frame fields
397 frame->format = AV_PIX_FMT_DRM_PRIME;
398 frame->width = mpp_frame_get_width(mppframe);
399 frame->height = mpp_frame_get_height(mppframe);
400 frame->pts = mpp_frame_get_pts(mppframe);
401 frame->color_range = mpp_frame_get_color_range(mppframe);
402 frame->color_primaries = mpp_frame_get_color_primaries(mppframe);
403 frame->color_trc = mpp_frame_get_color_trc(mppframe);
404 frame->colorspace = mpp_frame_get_colorspace(mppframe);
406 mode = mpp_frame_get_mode(mppframe);
407 frame->interlaced_frame = ((mode & MPP_FRAME_FLAG_FIELD_ORDER_MASK) == MPP_FRAME_FLAG_DEINTERLACED);
408 frame->top_field_first = ((mode & MPP_FRAME_FLAG_FIELD_ORDER_MASK) == MPP_FRAME_FLAG_TOP_FIRST);
410 mppformat = mpp_frame_get_fmt(mppframe);
411 drmformat = rkmpp_get_frameformat(mppformat);
413 // now setup the frame buffer info
414 buffer = mpp_frame_get_buffer(mppframe);
416 desc = av_mallocz(sizeof(AVDRMFrameDescriptor));
418 ret = AVERROR(ENOMEM);
422 desc->nb_objects = 1;
423 desc->objects[0].fd = mpp_buffer_get_fd(buffer);
424 desc->objects[0].size = mpp_buffer_get_size(buffer);
427 layer = &desc->layers[0];
428 layer->format = drmformat;
429 layer->nb_planes = 2;
431 layer->planes[0].object_index = 0;
432 layer->planes[0].offset = 0;
433 layer->planes[0].pitch = mpp_frame_get_hor_stride(mppframe);
435 layer->planes[1].object_index = 0;
436 layer->planes[1].offset = layer->planes[0].pitch * mpp_frame_get_ver_stride(mppframe);
437 layer->planes[1].pitch = layer->planes[0].pitch;
439 // we also allocate a struct in buf[0] that will allow to hold additionnal information
440 // for releasing properly MPP frames and decoder
441 framecontextref = av_buffer_allocz(sizeof(*framecontext));
442 if (!framecontextref) {
443 ret = AVERROR(ENOMEM);
447 // MPP decoder needs to be closed only when all frames have been released.
448 framecontext = (RKMPPFrameContext *)framecontextref->data;
449 framecontext->decoder_ref = av_buffer_ref(rk_context->decoder_ref);
450 framecontext->frame = mppframe;
452 frame->data[0] = (uint8_t *)desc;
453 frame->buf[0] = av_buffer_create((uint8_t *)desc, sizeof(*desc), rkmpp_release_frame,
454 framecontextref, AV_BUFFER_FLAG_READONLY);
456 if (!frame->buf[0]) {
457 ret = AVERROR(ENOMEM);
461 frame->hw_frames_ctx = av_buffer_ref(decoder->frames_ref);
462 if (!frame->hw_frames_ctx) {
463 ret = AVERROR(ENOMEM);
469 av_log(avctx, AV_LOG_ERROR, "Failed to retrieve the frame buffer, frame is dropped (code = %d)\n", ret);
470 mpp_frame_deinit(&mppframe);
472 } else if (decoder->eos_reached) {
474 } else if (ret == MPP_ERR_TIMEOUT) {
475 av_log(avctx, AV_LOG_DEBUG, "Timeout when trying to get a frame from MPP\n");
478 return AVERROR(EAGAIN);
482 mpp_frame_deinit(&mppframe);
485 av_buffer_unref(&framecontext->decoder_ref);
488 av_buffer_unref(&framecontextref);
496 static int rkmpp_receive_frame(AVCodecContext *avctx, AVFrame *frame)
498 RKMPPDecodeContext *rk_context = avctx->priv_data;
499 RKMPPDecoder *decoder = (RKMPPDecoder *)rk_context->decoder_ref->data;
502 RK_S32 usedslots, freeslots;
504 if (!decoder->eos_reached) {
505 // we get the available slots in decoder
506 ret = decoder->mpi->control(decoder->ctx, MPP_DEC_GET_STREAM_COUNT, &usedslots);
508 av_log(avctx, AV_LOG_ERROR, "Failed to get decoder used slots (code = %d).\n", ret);
512 freeslots = INPUT_MAX_PACKETS - usedslots;
514 ret = ff_decode_get_packet(avctx, &pkt);
515 if (ret < 0 && ret != AVERROR_EOF) {
519 ret = rkmpp_send_packet(avctx, &pkt);
520 av_packet_unref(&pkt);
523 av_log(avctx, AV_LOG_ERROR, "Failed to send packet to decoder (code = %d)\n", ret);
528 // make sure we keep decoder full
530 return AVERROR(EAGAIN);
533 return rkmpp_retrieve_frame(avctx, frame);
536 static void rkmpp_flush(AVCodecContext *avctx)
538 RKMPPDecodeContext *rk_context = avctx->priv_data;
539 RKMPPDecoder *decoder = (RKMPPDecoder *)rk_context->decoder_ref->data;
542 av_log(avctx, AV_LOG_DEBUG, "Flush.\n");
544 ret = decoder->mpi->reset(decoder->ctx);
546 decoder->first_packet = 1;
548 av_log(avctx, AV_LOG_ERROR, "Failed to reset MPI (code = %d)\n", ret);
551 static const AVCodecHWConfigInternal *rkmpp_hw_configs[] = {
552 HW_CONFIG_INTERNAL(DRM_PRIME),
556 #define RKMPP_DEC_CLASS(NAME) \
557 static const AVClass rkmpp_##NAME##_dec_class = { \
558 .class_name = "rkmpp_" #NAME "_dec", \
559 .version = LIBAVUTIL_VERSION_INT, \
562 #define RKMPP_DEC(NAME, ID, BSFS) \
563 RKMPP_DEC_CLASS(NAME) \
564 AVCodec ff_##NAME##_rkmpp_decoder = { \
565 .name = #NAME "_rkmpp", \
566 .long_name = NULL_IF_CONFIG_SMALL(#NAME " (rkmpp)"), \
567 .type = AVMEDIA_TYPE_VIDEO, \
569 .priv_data_size = sizeof(RKMPPDecodeContext), \
570 .init = rkmpp_init_decoder, \
571 .close = rkmpp_close_decoder, \
572 .receive_frame = rkmpp_receive_frame, \
573 .flush = rkmpp_flush, \
574 .priv_class = &rkmpp_##NAME##_dec_class, \
575 .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HARDWARE, \
576 .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_DRM_PRIME, \
578 .hw_configs = rkmpp_hw_configs, \
580 .wrapper_name = "rkmpp", \
583 RKMPP_DEC(h264, AV_CODEC_ID_H264, "h264_mp4toannexb")
584 RKMPP_DEC(hevc, AV_CODEC_ID_HEVC, "hevc_mp4toannexb")
585 RKMPP_DEC(vp8, AV_CODEC_ID_VP8, NULL)
586 RKMPP_DEC(vp9, AV_CODEC_ID_VP9, NULL)