1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/******************************************************************************
Copyright (C) 2023 by Dennis Sädtler <dennis@obsproject.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#pragma once
#include <qmetatype.h>
#include <string>
#include <vector>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavdevice/avdevice.h>
}
enum FFmpegCodecType { AUDIO, VIDEO, UNKNOWN };
/* This needs to handle a few special cases due to how the format is used in the UI:
* - strequal(nullptr, "") must be true
* - strequal("", nullptr) must be true
* - strequal(nullptr, nullptr) must be true
*/
static bool strequal(const char *a, const char *b)
{
if (!a && !b)
return true;
if (!a && *b == 0)
return true;
if (!b && *a == 0)
return true;
if (!a || !b)
return false;
return strcmp(a, b) == 0;
}
struct FFmpegCodec;
struct FFmpegFormat {
const char *name;
const char *long_name;
const char *mime_type;
const char *extensions;
AVCodecID audio_codec;
AVCodecID video_codec;
const AVCodecTag *const *codec_tags;
FFmpegFormat() = default;
FFmpegFormat(const char *name, const char *mime_type)
: name(name),
long_name(nullptr),
mime_type(mime_type),
extensions(nullptr),
audio_codec(AV_CODEC_ID_NONE),
video_codec(AV_CODEC_ID_NONE),
codec_tags(nullptr)
{
}
FFmpegFormat(const AVOutputFormat *av_format)
: name(av_format->name),
long_name(av_format->long_name),
mime_type(av_format->mime_type),
extensions(av_format->extensions),
audio_codec(av_format->audio_codec),
video_codec(av_format->video_codec),
codec_tags(av_format->codec_tag)
{
}
FFmpegCodec GetDefaultEncoder(FFmpegCodecType codec_type) const;
bool HasAudio() const { return audio_codec != AV_CODEC_ID_NONE; }
bool HasVideo() const { return video_codec != AV_CODEC_ID_NONE; }
bool operator==(const FFmpegFormat &format) const
{
if (!strequal(name, format.name))
return false;
return strequal(mime_type, format.mime_type);
}
};
Q_DECLARE_METATYPE(FFmpegFormat)
struct FFmpegCodec {
const char *name;
const char *long_name;
int id;
FFmpegCodecType type;
FFmpegCodec() = default;
FFmpegCodec(const char *name, int id, FFmpegCodecType type = UNKNOWN)
: name(name),
long_name(nullptr),
id(id),
type(type)
{
}
FFmpegCodec(const AVCodec *codec)
: name(codec->name),
long_name(codec->long_name),
id(codec->id)
{
switch (codec->type) {
case AVMEDIA_TYPE_AUDIO:
type = AUDIO;
break;
case AVMEDIA_TYPE_VIDEO:
type = VIDEO;
break;
default:
type = UNKNOWN;
}
}
bool operator==(const FFmpegCodec &codec) const
{
if (id != codec.id)
return false;
return strequal(name, codec.name);
}
};
Q_DECLARE_METATYPE(FFmpegCodec)
std::vector<FFmpegFormat> GetSupportedFormats();
std::vector<FFmpegCodec> GetFormatCodecs(const FFmpegFormat &format,
bool ignore_compatibility);
bool FFCodecAndFormatCompatible(const char *codec, const char *format);
bool IsBuiltinCodec(const char *codec);
bool ContainerSupportsCodec(const std::string &container,
const std::string &codec);
|