2009-04-16 09:00:46 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (c) 2009 Edward Hervey <bilboed@bilboed.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:22:16 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-04-16 09:00:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2012-09-10 15:53:54 +00:00
|
|
|
#include "gstavutils.h"
|
2016-11-23 14:04:58 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2011-06-21 04:33:29 +00:00
|
|
|
#include <unistd.h>
|
2016-11-23 14:04:58 +00:00
|
|
|
#endif
|
2011-06-21 04:33:29 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#endif
|
2012-12-06 02:29:13 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
2009-04-16 09:00:46 +00:00
|
|
|
|
2012-12-04 17:28:11 +00:00
|
|
|
#include <libavutil/mem.h>
|
|
|
|
|
2015-10-02 20:02:01 +00:00
|
|
|
const gchar *
|
2014-01-03 15:28:44 +00:00
|
|
|
gst_ffmpeg_get_codecid_longname (enum AVCodecID codec_id)
|
2009-04-16 09:00:46 +00:00
|
|
|
{
|
2022-01-16 17:33:47 +00:00
|
|
|
const AVCodec *codec;
|
2009-04-16 09:00:46 +00:00
|
|
|
/* Let's use what ffmpeg can provide us */
|
|
|
|
|
|
|
|
if ((codec = avcodec_find_decoder (codec_id)) ||
|
|
|
|
(codec = avcodec_find_encoder (codec_id)))
|
|
|
|
return codec->long_name;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2012-09-12 13:30:05 +00:00
|
|
|
av_smp_format_depth (enum AVSampleFormat smp_fmt)
|
2009-04-16 09:00:46 +00:00
|
|
|
{
|
|
|
|
gint depth = -1;
|
|
|
|
switch (smp_fmt) {
|
2012-09-12 13:30:05 +00:00
|
|
|
case AV_SAMPLE_FMT_U8:
|
2012-12-04 19:45:28 +00:00
|
|
|
case AV_SAMPLE_FMT_U8P:
|
2009-04-16 09:00:46 +00:00
|
|
|
depth = 1;
|
|
|
|
break;
|
2012-09-12 13:30:05 +00:00
|
|
|
case AV_SAMPLE_FMT_S16:
|
2012-12-04 19:45:28 +00:00
|
|
|
case AV_SAMPLE_FMT_S16P:
|
2009-04-16 09:00:46 +00:00
|
|
|
depth = 2;
|
|
|
|
break;
|
2012-09-12 13:30:05 +00:00
|
|
|
case AV_SAMPLE_FMT_S32:
|
2012-12-04 19:45:28 +00:00
|
|
|
case AV_SAMPLE_FMT_S32P:
|
2012-09-12 13:30:05 +00:00
|
|
|
case AV_SAMPLE_FMT_FLT:
|
2012-12-04 19:45:28 +00:00
|
|
|
case AV_SAMPLE_FMT_FLTP:
|
2009-04-16 09:00:46 +00:00
|
|
|
depth = 4;
|
|
|
|
break;
|
2012-09-12 13:30:05 +00:00
|
|
|
case AV_SAMPLE_FMT_DBL:
|
2012-12-04 19:45:28 +00:00
|
|
|
case AV_SAMPLE_FMT_DBLP:
|
2009-04-16 09:00:46 +00:00
|
|
|
depth = 8;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GST_ERROR ("UNHANDLED SAMPLE FORMAT !");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2018-06-29 02:52:02 +00:00
|
|
|
* Fill in pointers to memory in a AVFrame, where
|
2009-04-16 09:00:46 +00:00
|
|
|
* everything is aligned by 4 (as required by X).
|
|
|
|
* This is mostly a copy from imgconvert.c with some
|
|
|
|
* small changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FF_COLOR_RGB 0 /* RGB color space */
|
|
|
|
#define FF_COLOR_GRAY 1 /* gray color space */
|
|
|
|
#define FF_COLOR_YUV 2 /* YUV color space. 16 <= Y <= 235, 16 <= U, V <= 240 */
|
|
|
|
#define FF_COLOR_YUV_JPEG 3 /* YUV color space. 0 <= Y <= 255, 0 <= U, V <= 255 */
|
|
|
|
|
2018-06-29 02:52:02 +00:00
|
|
|
#define FF_PIXEL_PLANAR 0 /* each channel has one component in AVFrame */
|
2009-04-16 09:00:46 +00:00
|
|
|
#define FF_PIXEL_PACKED 1 /* only one components containing all the channels */
|
|
|
|
#define FF_PIXEL_PALETTE 2 /* one components containing indexes for a palette */
|
|
|
|
|
|
|
|
typedef struct PixFmtInfo
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
uint8_t nb_channels; /* number of channels (including alpha) */
|
|
|
|
uint8_t color_type; /* color type (see FF_COLOR_xxx constants) */
|
|
|
|
uint8_t pixel_type; /* pixel storage type (see FF_PIXEL_xxx constants) */
|
|
|
|
uint8_t is_alpha:1; /* true if alpha can be specified */
|
|
|
|
uint8_t x_chroma_shift; /* X chroma subsampling factor is 2 ^ shift */
|
|
|
|
uint8_t y_chroma_shift; /* Y chroma subsampling factor is 2 ^ shift */
|
|
|
|
uint8_t depth; /* bit depth of the color components */
|
|
|
|
} PixFmtInfo;
|
|
|
|
|
|
|
|
|
|
|
|
/* this table gives more information about formats */
|
2015-03-10 09:17:45 +00:00
|
|
|
static PixFmtInfo pix_fmt_info[AV_PIX_FMT_NB];
|
2009-04-16 09:00:46 +00:00
|
|
|
void
|
2010-03-24 11:07:28 +00:00
|
|
|
gst_ffmpeg_init_pix_fmt_info (void)
|
2009-04-16 09:00:46 +00:00
|
|
|
{
|
|
|
|
/* YUV formats */
|
2015-03-10 09:17:45 +00:00
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].name = g_strdup ("yuv420p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].depth = 8,
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].x_chroma_shift = 1,
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV420P].y_chroma_shift = 1;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].name = g_strdup ("yuv422p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].x_chroma_shift = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV422P].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].name = g_strdup ("yuv444p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV444P].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].name = g_strdup ("yuv422");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].nb_channels = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].pixel_type = FF_PIXEL_PACKED;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].x_chroma_shift = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUYV422].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].name = g_strdup ("yuv410p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].x_chroma_shift = 2;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV410P].y_chroma_shift = 2;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].name = g_strdup ("yuv411p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].x_chroma_shift = 2;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUV411P].y_chroma_shift = 0;
|
2009-04-16 09:00:46 +00:00
|
|
|
|
|
|
|
/* JPEG YUV */
|
2015-03-10 09:17:45 +00:00
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].name = g_strdup ("yuvj420p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].color_type = FF_COLOR_YUV_JPEG;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].x_chroma_shift = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ420P].y_chroma_shift = 1;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].name = g_strdup ("yuvj422p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].color_type = FF_COLOR_YUV_JPEG;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].x_chroma_shift = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ422P].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].name = g_strdup ("yuvj444p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].color_type = FF_COLOR_YUV_JPEG;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVJ444P].y_chroma_shift = 0;
|
2009-04-16 09:00:46 +00:00
|
|
|
|
|
|
|
/* RGB formats */
|
2015-03-10 09:17:45 +00:00
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].name = g_strdup ("rgb24");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].color_type = FF_COLOR_RGB;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].pixel_type = FF_PIXEL_PACKED;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB24].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].name = g_strdup ("bgr24");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].color_type = FF_COLOR_RGB;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].pixel_type = FF_PIXEL_PACKED;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_BGR24].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].name = g_strdup ("rgba32");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].nb_channels = 4;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].is_alpha = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].color_type = FF_COLOR_RGB;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].pixel_type = FF_PIXEL_PACKED;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].depth = 8;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB32].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].name = g_strdup ("rgb565");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].nb_channels = 3;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].color_type = FF_COLOR_RGB;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].pixel_type = FF_PIXEL_PACKED;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].depth = 5;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB565].y_chroma_shift = 0;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].name = g_strdup ("rgb555");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].nb_channels = 4;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].is_alpha = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].color_type = FF_COLOR_RGB;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].pixel_type = FF_PIXEL_PACKED;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].depth = 5;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].x_chroma_shift = 0;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_RGB555].y_chroma_shift = 0;
|
2009-04-16 09:00:46 +00:00
|
|
|
|
|
|
|
/* gray / mono formats */
|
2015-03-10 09:17:45 +00:00
|
|
|
pix_fmt_info[AV_PIX_FMT_GRAY8].name = g_strdup ("gray");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_GRAY8].nb_channels = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_GRAY8].color_type = FF_COLOR_GRAY;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_GRAY8].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_GRAY8].depth = 8;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOWHITE].name = g_strdup ("monow");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOWHITE].nb_channels = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOWHITE].color_type = FF_COLOR_GRAY;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOWHITE].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOWHITE].depth = 1;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOBLACK].name = g_strdup ("monob");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOBLACK].nb_channels = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOBLACK].color_type = FF_COLOR_GRAY;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOBLACK].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_MONOBLACK].depth = 1;
|
2009-04-16 09:00:46 +00:00
|
|
|
|
|
|
|
/* paletted formats */
|
2015-03-10 09:17:45 +00:00
|
|
|
pix_fmt_info[AV_PIX_FMT_PAL8].name = g_strdup ("pal8");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_PAL8].nb_channels = 4;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_PAL8].is_alpha = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_PAL8].color_type = FF_COLOR_RGB;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_PAL8].pixel_type = FF_PIXEL_PALETTE;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_PAL8].depth = 8;
|
|
|
|
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].name = g_strdup ("yuva420p");
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].nb_channels = 4;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].is_alpha = 1;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].color_type = FF_COLOR_YUV;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].pixel_type = FF_PIXEL_PLANAR;
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].depth = 8,
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].x_chroma_shift = 1,
|
|
|
|
pix_fmt_info[AV_PIX_FMT_YUVA420P].y_chroma_shift = 1;
|
2009-04-16 09:00:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
gst_ffmpeg_avpicture_get_size (int pix_fmt, int width, int height)
|
|
|
|
{
|
2018-06-29 02:52:02 +00:00
|
|
|
AVFrame dummy_pict;
|
2009-04-16 09:00:46 +00:00
|
|
|
|
|
|
|
return gst_ffmpeg_avpicture_fill (&dummy_pict, NULL, pix_fmt, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GEN_MASK(x) ((1<<(x))-1)
|
|
|
|
#define ROUND_UP_X(v,x) (((v) + GEN_MASK(x)) & ~GEN_MASK(x))
|
|
|
|
#define ROUND_UP_2(x) ROUND_UP_X (x, 1)
|
|
|
|
#define ROUND_UP_4(x) ROUND_UP_X (x, 2)
|
|
|
|
#define ROUND_UP_8(x) ROUND_UP_X (x, 3)
|
|
|
|
#define DIV_ROUND_UP_X(v,x) (((v) + GEN_MASK(x)) >> (x))
|
|
|
|
|
|
|
|
int
|
2018-06-29 02:52:02 +00:00
|
|
|
gst_ffmpeg_avpicture_fill (AVFrame * picture,
|
2015-11-04 20:18:56 +00:00
|
|
|
uint8_t * ptr, enum AVPixelFormat pix_fmt, int width, int height)
|
2009-04-16 09:00:46 +00:00
|
|
|
{
|
|
|
|
int size, w2, h2, size2;
|
|
|
|
int stride, stride2;
|
|
|
|
PixFmtInfo *pinfo;
|
|
|
|
|
|
|
|
pinfo = &pix_fmt_info[pix_fmt];
|
|
|
|
|
|
|
|
switch (pix_fmt) {
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_YUV420P:
|
|
|
|
case AV_PIX_FMT_YUV422P:
|
|
|
|
case AV_PIX_FMT_YUV444P:
|
|
|
|
case AV_PIX_FMT_YUV410P:
|
|
|
|
case AV_PIX_FMT_YUV411P:
|
|
|
|
case AV_PIX_FMT_YUVJ420P:
|
|
|
|
case AV_PIX_FMT_YUVJ422P:
|
|
|
|
case AV_PIX_FMT_YUVJ444P:
|
2009-04-16 09:00:46 +00:00
|
|
|
stride = ROUND_UP_4 (width);
|
|
|
|
h2 = ROUND_UP_X (height, pinfo->y_chroma_shift);
|
|
|
|
size = stride * h2;
|
|
|
|
w2 = DIV_ROUND_UP_X (width, pinfo->x_chroma_shift);
|
|
|
|
stride2 = ROUND_UP_4 (w2);
|
|
|
|
h2 = DIV_ROUND_UP_X (height, pinfo->y_chroma_shift);
|
|
|
|
size2 = stride2 * h2;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = picture->data[0] + size;
|
|
|
|
picture->data[2] = picture->data[1] + size2;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = stride2;
|
|
|
|
picture->linesize[2] = stride2;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
GST_DEBUG ("planes %d %d %d", 0, size, size + size2);
|
|
|
|
GST_DEBUG ("strides %d %d %d", stride, stride2, stride2);
|
|
|
|
return size + 2 * size2;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_YUVA420P:
|
2010-10-13 18:48:19 +00:00
|
|
|
stride = ROUND_UP_4 (width);
|
|
|
|
h2 = ROUND_UP_X (height, pinfo->y_chroma_shift);
|
|
|
|
size = stride * h2;
|
|
|
|
w2 = DIV_ROUND_UP_X (width, pinfo->x_chroma_shift);
|
|
|
|
stride2 = ROUND_UP_4 (w2);
|
|
|
|
h2 = DIV_ROUND_UP_X (height, pinfo->y_chroma_shift);
|
|
|
|
size2 = stride2 * h2;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = picture->data[0] + size;
|
|
|
|
picture->data[2] = picture->data[1] + size2;
|
|
|
|
picture->data[3] = picture->data[2] + size2;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = stride2;
|
|
|
|
picture->linesize[2] = stride2;
|
|
|
|
picture->linesize[3] = stride;
|
|
|
|
GST_DEBUG ("planes %d %d %d %d", 0, size, size + size2, size + 2 * size2);
|
|
|
|
GST_DEBUG ("strides %d %d %d %d", stride, stride2, stride2, stride);
|
|
|
|
return 2 * size + 2 * size2;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_RGB24:
|
|
|
|
case AV_PIX_FMT_BGR24:
|
2009-04-16 09:00:46 +00:00
|
|
|
stride = ROUND_UP_4 (width * 3);
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = 0;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size;
|
2015-03-10 09:17:45 +00:00
|
|
|
/*case AV_PIX_FMT_AYUV4444:
|
|
|
|
case AV_PIX_FMT_BGR32:
|
|
|
|
case AV_PIX_FMT_BGRA32:
|
|
|
|
case AV_PIX_FMT_RGB32: */
|
|
|
|
case AV_PIX_FMT_RGB32:
|
2009-04-16 09:00:46 +00:00
|
|
|
stride = width * 4;
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = 0;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_RGB555:
|
|
|
|
case AV_PIX_FMT_RGB565:
|
|
|
|
case AV_PIX_FMT_YUYV422:
|
|
|
|
case AV_PIX_FMT_UYVY422:
|
2009-04-16 09:00:46 +00:00
|
|
|
stride = ROUND_UP_4 (width * 2);
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = 0;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_UYYVYY411:
|
2009-04-16 09:00:46 +00:00
|
|
|
/* FIXME, probably not the right stride */
|
|
|
|
stride = ROUND_UP_4 (width);
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = width + width / 2;
|
|
|
|
picture->linesize[1] = 0;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size + size / 2;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_GRAY8:
|
2009-04-16 09:00:46 +00:00
|
|
|
stride = ROUND_UP_4 (width);
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = 0;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_MONOWHITE:
|
|
|
|
case AV_PIX_FMT_MONOBLACK:
|
2009-04-16 09:00:46 +00:00
|
|
|
stride = ROUND_UP_4 ((width + 7) >> 3);
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = 0;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size;
|
2015-03-10 09:17:45 +00:00
|
|
|
case AV_PIX_FMT_PAL8:
|
2009-04-16 09:00:46 +00:00
|
|
|
/* already forced to be with stride, so same result as other function */
|
|
|
|
stride = ROUND_UP_4 (width);
|
|
|
|
size = stride * height;
|
|
|
|
picture->data[0] = ptr;
|
|
|
|
picture->data[1] = ptr + size; /* palette is stored here as 256 32 bit words */
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
picture->linesize[0] = stride;
|
|
|
|
picture->linesize[1] = 4;
|
|
|
|
picture->linesize[2] = 0;
|
|
|
|
picture->linesize[3] = 0;
|
|
|
|
return size + 256 * 4;
|
|
|
|
default:
|
|
|
|
picture->data[0] = NULL;
|
|
|
|
picture->data[1] = NULL;
|
|
|
|
picture->data[2] = NULL;
|
|
|
|
picture->data[3] = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-03-08 10:31:35 +00:00
|
|
|
|
|
|
|
/* Create a GstBuffer of the requested size and caps.
|
|
|
|
* The memory will be allocated by ffmpeg, making sure it's properly aligned
|
|
|
|
* for any processing. */
|
|
|
|
|
|
|
|
GstBuffer *
|
2011-06-02 14:23:19 +00:00
|
|
|
new_aligned_buffer (gint size)
|
2009-03-08 10:31:35 +00:00
|
|
|
{
|
|
|
|
GstBuffer *buf;
|
2012-02-22 01:08:06 +00:00
|
|
|
guint8 *data;
|
|
|
|
|
|
|
|
data = av_malloc (size);
|
2009-03-08 10:31:35 +00:00
|
|
|
|
|
|
|
buf = gst_buffer_new ();
|
2012-03-30 16:14:00 +00:00
|
|
|
gst_buffer_append_memory (buf,
|
2012-02-22 01:08:06 +00:00
|
|
|
gst_memory_new_wrapped (0, data, size, 0, size, data, av_free));
|
2009-03-08 10:31:35 +00:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
2011-06-21 04:33:29 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
gst_ffmpeg_auto_max_threads (void)
|
|
|
|
{
|
|
|
|
static gsize n_threads = 0;
|
|
|
|
if (g_once_init_enter (&n_threads)) {
|
|
|
|
int n = 1;
|
|
|
|
#if defined(_WIN32)
|
|
|
|
{
|
|
|
|
const char *s = getenv ("NUMBER_OF_PROCESSORS");
|
|
|
|
if (s) {
|
|
|
|
n = atoi (s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
{
|
|
|
|
int mib[] = { CTL_HW, HW_NCPU };
|
|
|
|
size_t dataSize = sizeof (int);
|
|
|
|
|
2011-11-23 23:41:27 +00:00
|
|
|
if (sysctl (mib, 2, &n, &dataSize, NULL, 0)) {
|
2011-06-21 04:33:29 +00:00
|
|
|
n = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
n = sysconf (_SC_NPROCESSORS_CONF);
|
|
|
|
#endif
|
|
|
|
if (n < 1)
|
|
|
|
n = 1;
|
|
|
|
|
|
|
|
g_once_init_leave (&n_threads, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int) (n_threads);
|
|
|
|
}
|
2022-11-01 13:35:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_av_codec_compliance_get_type (void)
|
|
|
|
{
|
|
|
|
static gsize compliance_type = 0;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&compliance_type)) {
|
|
|
|
static const GEnumValue types[] = {
|
|
|
|
{GST_AV_CODEC_COMPLIANCE_AUTO,
|
2022-11-04 18:17:39 +00:00
|
|
|
"The decoder automatically decides. If the pipeline is live, it will "
|
2022-11-01 13:35:11 +00:00
|
|
|
"use `normal` mode, and `strict` otherwise.", "auto"},
|
|
|
|
{GST_AV_CODEC_COMPLIANCE_VERY_STRICT,
|
|
|
|
"VeryStrict: Strictly conform to an older more strict version "
|
|
|
|
"of the spec or reference software", "very-strict"},
|
|
|
|
{GST_AV_CODEC_COMPLIANCE_STRICT,
|
|
|
|
"Strict: Strictly conform to all the things in the spec no matter "
|
|
|
|
"what consequences", "strict"},
|
|
|
|
{GST_AV_CODEC_COMPLIANCE_NORMAL, "Normal", "normal"},
|
|
|
|
{GST_AV_CODEC_COMPLIANCE_UNOFFICIAL,
|
|
|
|
"Unofficial: Allow unofficial extensions "
|
|
|
|
"(decoder will not differentiate this with \"normal\")",
|
|
|
|
"unofficial"},
|
|
|
|
{GST_AV_CODEC_COMPLIANCE_EXPERIMENTAL,
|
|
|
|
"Experimental: Allow nonstandardized experimental things "
|
|
|
|
"(decoder will not differentiate this with \"normal\")",
|
|
|
|
"experimental"},
|
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
|
|
|
GType tmp = g_enum_register_static ("GstAvCodecCompliance", types);
|
|
|
|
g_once_init_leave (&compliance_type, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (GType) compliance_type;
|
|
|
|
}
|