218 lines
5.8 KiB
C
218 lines
5.8 KiB
C
/*
|
|
* V4L2 mem2mem helper functions
|
|
*
|
|
* Copyright (C) 2017 Alexis Ballier <aballier@gentoo.org>
|
|
* Copyright (C) 2017 Jorge Ramirez <jorge.ramirez-ortiz@linaro.org>
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef AVCODEC_V4L2_M2M_H
|
|
#define AVCODEC_V4L2_M2M_H
|
|
|
|
#include <semaphore.h>
|
|
#include <unistd.h>
|
|
#include <dirent.h>
|
|
#include <linux/videodev2.h>
|
|
|
|
#include "libavcodec/avcodec.h"
|
|
#include "libavutil/pixfmt.h"
|
|
#include "v4l2_context.h"
|
|
|
|
#define container_of(ptr, type, member) ({ \
|
|
const __typeof__(((type *)0)->member ) *__mptr = (ptr); \
|
|
(type *)((char *)__mptr - offsetof(type,member) );})
|
|
|
|
#define V4L_M2M_DEFAULT_OPTS \
|
|
{ "num_output_buffers", "Number of buffers in the output context",\
|
|
OFFSET(num_output_buffers), AV_OPT_TYPE_INT, { .i64 = 16 }, 2, INT_MAX, FLAGS }
|
|
|
|
#define FF_V4L2_M2M_TRACK_SIZE 128
|
|
typedef struct V4L2m2mTrackEl {
|
|
int discard; // If we see this buffer its been flushed, so discard
|
|
int pending;
|
|
int64_t pts;
|
|
int64_t dts;
|
|
#if FF_API_FRAME_PKT
|
|
int64_t pkt_pos;
|
|
int pkt_size;
|
|
#endif
|
|
int64_t duration;
|
|
int64_t track_pts;
|
|
} V4L2m2mTrackEl;
|
|
|
|
typedef struct pts_stats_s
|
|
{
|
|
void * logctx;
|
|
const char * name; // For debug
|
|
unsigned int last_count;
|
|
unsigned int last_interval;
|
|
int64_t last_pts;
|
|
int64_t guess;
|
|
} pts_stats_t;
|
|
|
|
typedef struct xlat_track_s {
|
|
unsigned int track_no;
|
|
int64_t last_pts; // Last valid PTS decoded
|
|
V4L2m2mTrackEl track_els[FF_V4L2_M2M_TRACK_SIZE];
|
|
} xlat_track_t;
|
|
|
|
struct dmabufs_ctl;
|
|
|
|
typedef struct V4L2m2mContext {
|
|
char devname[PATH_MAX];
|
|
int fd;
|
|
|
|
/* the codec context queues */
|
|
V4L2Context capture;
|
|
V4L2Context output;
|
|
|
|
/* dynamic stream reconfig */
|
|
AVCodecContext *avctx;
|
|
sem_t refsync;
|
|
atomic_uint refcount;
|
|
|
|
/* null frame/packet received */
|
|
int draining;
|
|
int running;
|
|
AVPacket buf_pkt;
|
|
|
|
/* Reference to a frame. Only used during encoding */
|
|
AVFrame *frame;
|
|
|
|
/* Reference to self; only valid while codec is active. */
|
|
struct V4L2m2mContext *self_ref;
|
|
|
|
/* reference back to V4L2m2mPriv */
|
|
void *priv;
|
|
|
|
AVBufferRef *device_ref;
|
|
|
|
/* generate DRM frames */
|
|
int output_drm;
|
|
|
|
/* input frames are drmprime */
|
|
int input_drm;
|
|
|
|
/* Frame tracking */
|
|
xlat_track_t xlat;
|
|
|
|
pts_stats_t pts_stat;
|
|
|
|
/* req pkt */
|
|
int req_pkt;
|
|
int reorder_size;
|
|
|
|
/* Ext data sent */
|
|
int extdata_sent;
|
|
/* Ext data sent in packet - overrides ctx */
|
|
void * extdata_data;
|
|
size_t extdata_size;
|
|
|
|
#define FF_V4L2_QUIRK_REINIT_ALWAYS 1
|
|
#define FF_V4L2_QUIRK_ENUM_FRAMESIZES_BROKEN 2
|
|
/* Quirks */
|
|
unsigned int quirks;
|
|
|
|
struct dmabufs_ctl * db_ctl;
|
|
} V4L2m2mContext;
|
|
|
|
typedef struct V4L2m2mPriv {
|
|
AVClass *class;
|
|
|
|
V4L2m2mContext *context; ///< RefStruct reference
|
|
|
|
int num_output_buffers;
|
|
int num_capture_buffers;
|
|
const char * dmabuf_alloc;
|
|
enum AVPixelFormat pix_fmt;
|
|
} V4L2m2mPriv;
|
|
|
|
/**
|
|
* Allocate a new context and references for a V4L2 M2M instance.
|
|
*
|
|
* @param[in] ctx The V4L2m2mPriv instantiated by the encoder/decoder.
|
|
* @param[out] ctx The V4L2m2mContext.
|
|
*
|
|
* @returns 0 in success, a negative error code otherwise.
|
|
*/
|
|
int ff_v4l2_m2m_create_context(V4L2m2mPriv *priv, V4L2m2mContext **s);
|
|
|
|
|
|
/**
|
|
* Probes the video nodes looking for the required codec capabilities.
|
|
*
|
|
* @param[in] ctx The V4L2m2mPriv instantiated by the encoder/decoder.
|
|
*
|
|
* @returns 0 if a driver is found, a negative number otherwise.
|
|
*/
|
|
int ff_v4l2_m2m_codec_init(V4L2m2mPriv *priv);
|
|
|
|
/**
|
|
* Releases all the codec resources if all AVBufferRefs have been returned to the
|
|
* ctx. Otherwise keep the driver open.
|
|
*
|
|
* @param[in] The V4L2m2mPriv instantiated by the encoder/decoder.
|
|
*
|
|
* @returns 0
|
|
*
|
|
*/
|
|
int ff_v4l2_m2m_codec_end(V4L2m2mPriv *priv);
|
|
|
|
/**
|
|
* Reinitializes the V4L2m2mContext when the driver cannot continue processing
|
|
* with the capture parameters.
|
|
*
|
|
* @param[in] ctx The V4L2m2mContext instantiated by the encoder/decoder.
|
|
*
|
|
* @returns 0 in case of success, negative number otherwise
|
|
*/
|
|
int ff_v4l2_m2m_codec_reinit(V4L2m2mContext *ctx);
|
|
|
|
/**
|
|
* Reinitializes the V4L2m2mContext when the driver cannot continue processing
|
|
* with the any of the current V4L2Contexts (ie, changes in output and capture).
|
|
*
|
|
* @param[in] ctx The V4L2m2mContext instantiated by the encoder/decoder.
|
|
*
|
|
* @returns 0 in case of success, negative number otherwise
|
|
*/
|
|
int ff_v4l2_m2m_codec_full_reinit(V4L2m2mContext *ctx);
|
|
|
|
|
|
static inline unsigned int ff_v4l2_get_format_width(const struct v4l2_format * const fmt)
|
|
{
|
|
return V4L2_TYPE_IS_MULTIPLANAR(fmt->type) ? fmt->fmt.pix_mp.width : fmt->fmt.pix.width;
|
|
}
|
|
|
|
static inline unsigned int ff_v4l2_get_format_height(const struct v4l2_format * const fmt)
|
|
{
|
|
return V4L2_TYPE_IS_MULTIPLANAR(fmt->type) ? fmt->fmt.pix_mp.height : fmt->fmt.pix.height;
|
|
}
|
|
|
|
static inline uint32_t ff_v4l2_get_format_pixelformat(const struct v4l2_format * const fmt)
|
|
{
|
|
return V4L2_TYPE_IS_MULTIPLANAR(fmt->type) ? fmt->fmt.pix_mp.pixelformat : fmt->fmt.pix.pixelformat;
|
|
}
|
|
|
|
static inline int ff_v4l2_ctx_eos(const V4L2Context * const ctx)
|
|
{
|
|
return ctx->flag_last;
|
|
}
|
|
|
|
|
|
#endif /* AVCODEC_V4L2_M2M_H */
|