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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
/*
* Hedgewars, a free turn based strategy game
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.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; version 2 of the License
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "LibavInteraction.h"
#ifdef VIDEOREC
extern "C"
{
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libavutil/avutil.h"
}
#include <QVector>
#include <QList>
#include <QComboBox>
#include "HWApplication.h"
// compatibility section
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 8, 0)
#define av_codec_is_encoder(x) x->encode
#endif
#if LIBAVCODEC_VERSION_MAJOR < 55
#define AVCodecID CodecID
#endif
#if LIBAVFORMAT_VERSION_MAJOR < 54
#define avformat_find_stream_info(x, y) av_find_stream_info(x)
#define avformat_close_input(x) av_close_input_file(*(x))
#endif
#if LIBAVUTIL_VERSION_MAJOR < 54
#define AVPixelFormat PixelFormat
#define AV_PIX_FMT_YUV420P PIX_FMT_YUV420P
#endif
struct Codec
{
AVCodecID id;
bool isAudio;
QString shortName; // used for identification
QString longName; // used for displaying to user
bool isRecommended;
};
struct Format
{
QString shortName;
QString longName;
bool isRecommended;
QString extension;
QVector<Codec*> codecs;
};
QList<Codec> codecs;
QMap<QString,Format> formats;
// test if given format supports given codec
#if LIBAVCODEC_VERSION_MAJOR >= 59
bool FormatQueryCodec(const AVOutputFormat *ofmt, enum AVCodecID codec_id)
#else
bool FormatQueryCodec(AVOutputFormat *ofmt, enum AVCodecID codec_id)
#endif
{
#if LIBAVFORMAT_VERSION_MAJOR >= 54
return avformat_query_codec(ofmt, codec_id, FF_COMPLIANCE_NORMAL) == 1;
#else
if (ofmt->codec_tag)
return !!av_codec_get_tag(ofmt->codec_tag, codec_id);
return codec_id == ofmt->video_codec || codec_id == ofmt->audio_codec;
#endif
}
LibavInteraction::LibavInteraction() : QObject()
{
#if LIBAVCODEC_VERSION_MAJOR < 59
// initialize libav and register all codecs and formats
av_register_all();
#endif
// get list of all codecs
#if LIBAVCODEC_VERSION_MAJOR >= 59
const AVCodec* pCodec = NULL;
void* i = 0;
while ((pCodec = av_codec_iterate(&i)))
#else
AVCodec* pCodec = NULL;
while ((pCodec = av_codec_next(pCodec)))
#endif
{
if (!av_codec_is_encoder(pCodec))
continue;
if (pCodec->type != AVMEDIA_TYPE_VIDEO && pCodec->type != AVMEDIA_TYPE_AUDIO)
continue;
// this encoders seems to be buggy
if (strcmp(pCodec->name, "rv10") == 0 || strcmp(pCodec->name, "rv20") == 0)
continue;
// this encoder is experimental (as of Jan 17, 2019)
if (strcmp(pCodec->name, "libaom-av1") == 0)
continue;
// doesn't support stereo sound
if (strcmp(pCodec->name, "real_144") == 0)
continue;
if (!pCodec->long_name || strlen(pCodec->long_name) == 0)
continue;
if (pCodec->type == AVMEDIA_TYPE_VIDEO)
{
if (pCodec->supported_framerates != NULL)
continue;
// check if codec supports yuv 4:2:0 format
if (!pCodec->pix_fmts)
continue;
bool yuv420Supported = false;
for (const enum AVPixelFormat* pfmt = pCodec->pix_fmts; *pfmt != -1; pfmt++)
if (*pfmt == AV_PIX_FMT_YUV420P)
{
yuv420Supported = true;
break;
}
if (!yuv420Supported)
continue;
}
if (pCodec->type == AVMEDIA_TYPE_AUDIO)
{
// check if codec supports signed 16-bit format
if (!pCodec->sample_fmts)
continue;
bool s16Supported = false;
for (const enum AVSampleFormat* pfmt = pCodec->sample_fmts; *pfmt != -1; pfmt++)
if (*pfmt == AV_SAMPLE_FMT_S16)
{
s16Supported = true;
break;
}
if (!s16Supported)
continue;
}
// add codec to list of codecs
codecs.push_back(Codec());
Codec & codec = codecs.back();
codec.id = pCodec->id;
codec.isAudio = pCodec->type == AVMEDIA_TYPE_AUDIO;
codec.shortName = pCodec->name;
codec.longName = pCodec->long_name;
codec.isRecommended = false;
if (strcmp(pCodec->name, "libx264") == 0)
{
codec.longName = "H.264/MPEG-4 Part 10 AVC (x264)";
codec.isRecommended = true;
}
else if (strcmp(pCodec->name, "libxvid") == 0)
{
codec.longName = "MPEG-4 Part 2 (Xvid)";
codec.isRecommended = true;
}
else if (strcmp(pCodec->name, "libmp3lame") == 0)
{
codec.longName = "MP3 (MPEG audio layer 3) (LAME)";
codec.isRecommended = true;
}
else
codec.longName = pCodec->long_name;
if (strcmp(pCodec->name, "mpeg4") == 0 || strcmp(pCodec->name, "ac3_fixed") == 0)
codec.isRecommended = true;
}
// get list of all formats
#if LIBAVCODEC_VERSION_MAJOR >= 59
const AVOutputFormat* pFormat = NULL;
i = 0;
while ((pFormat = av_muxer_iterate(&i)))
#else
AVOutputFormat* pFormat = NULL;
while ((pFormat = av_oformat_next(pFormat)))
#endif
{
if (!pFormat->extensions)
continue;
// skip some strange formats to not confuse users
if (strstr(pFormat->long_name, "raw"))
continue;
Format format;
bool hasVideoCodec = false;
for (QList<Codec>::iterator codec = codecs.begin(); codec != codecs.end(); ++codec)
{
if (!FormatQueryCodec(pFormat, codec->id))
continue;
format.codecs.push_back(&*codec);
if (!codec->isAudio)
hasVideoCodec = true;
}
if (!hasVideoCodec)
continue;
QString ext(pFormat->extensions);
ext.truncate(strcspn(pFormat->extensions, ","));
format.extension = ext;
format.shortName = pFormat->name;
format.longName = QString("%1 (*.%2)").arg(pFormat->long_name).arg(ext);
format.isRecommended = strcmp(pFormat->name, "mp4") == 0 || strcmp(pFormat->name, "avi") == 0;
formats[pFormat->name] = format;
}
}
void LibavInteraction::fillFormats(QComboBox * pFormats)
{
// first insert recomended formats
foreach(const Format & format, formats)
if (format.isRecommended)
pFormats->addItem(format.longName, format.shortName);
// remember where to place separator between recomended and other formats
int sep = pFormats->count();
// insert remaining formats
foreach(const Format & format, formats)
if (!format.isRecommended)
pFormats->addItem(format.longName, format.shortName);
// insert separator if necessary
if (sep != 0 && sep != pFormats->count())
pFormats->insertSeparator(sep);
}
void LibavInteraction::fillCodecs(const QString & fmt, QComboBox * pVCodecs, QComboBox * pACodecs)
{
Format & format = formats[fmt];
// first insert recomended codecs
foreach(Codec * codec, format.codecs)
{
if (codec->isRecommended)
{
if (codec->isAudio)
pACodecs->addItem(codec->longName, codec->shortName);
else
pVCodecs->addItem(codec->longName, codec->shortName);
}
}
// remember where to place separators between recomended and other codecs
int vsep = pVCodecs->count();
int asep = pACodecs->count();
// insert remaining codecs
foreach(Codec * codec, format.codecs)
{
if (!codec->isRecommended)
{
if (codec->isAudio)
pACodecs->addItem(codec->longName, codec->shortName);
else
pVCodecs->addItem(codec->longName, codec->shortName);
}
}
// insert separators if necessary
if (vsep != 0 && vsep != pVCodecs->count())
pVCodecs->insertSeparator(vsep);
if (asep != 0 && asep != pACodecs->count())
pACodecs->insertSeparator(asep);
}
QString LibavInteraction::getExtension(const QString & format)
{
return formats[format].extension;
}
// get information abaout file (duration, resolution etc) in multiline string
QString LibavInteraction::getFileInfo(const QString & filepath)
{
AVFormatContext* pContext = NULL;
QByteArray utf8path = filepath.toUtf8();
if (avformat_open_input(&pContext, utf8path.data(), NULL, NULL) < 0)
return "";
if (avformat_find_stream_info(pContext, NULL) < 0)
return "";
int s = float(pContext->duration)/AV_TIME_BASE;
//: Duration in minutes and seconds (SI units)
QString desc = tr("Duration: %1min %2s").arg(s/60).arg(s%60) + "\n";
for (int i = 0; i < (int)pContext->nb_streams; i++)
{
AVStream* pStream = pContext->streams[i];
if (!pStream)
continue;
#if LIBAVCODEC_VERSION_MAJOR >= 59
const AVCodec *st_codec = avcodec_find_decoder(pContext->streams[i]->codecpar->codec_id);
AVCodecContext* pCodec = avcodec_alloc_context3(st_codec);
avcodec_parameters_to_context(pCodec, pContext->streams[i]->codecpar);
#else
AVCodecContext* pCodec = pContext->streams[i]->codec;
#endif
if (!pCodec)
continue;
#if LIBAVCODEC_VERSION_MAJOR >= 59
const AVCodec* pDecoder = avcodec_find_decoder(pCodec->codec_id);
#else
AVCodec* pDecoder = avcodec_find_decoder(pCodec->codec_id);
#endif
QString decoderName = pDecoder ? pDecoder->name : tr("unknown");
if (pCodec->codec_type == AVMEDIA_TYPE_VIDEO)
{
if (pStream->avg_frame_rate.den)
{
float fps = float(pStream->avg_frame_rate.num)/pStream->avg_frame_rate.den;
//: Video metadata. %1 = video width, %2 = video height, %3 = frames per second = %4 = decoder name
desc += QString(tr("Video: %1x%2, %3 FPS, %4")).arg(pCodec->width).arg(pCodec->height).arg(QLocale().toString(fps, 'f', 2)).arg(decoderName);
}
else
{
//: Video metadata. %1 = video width, %2 = video height, %3 = decoder name
desc += QString(tr("Video: %1x%2, %3")).arg(pCodec->width).arg(pCodec->height).arg(decoderName);
}
}
else if (pCodec->codec_type == AVMEDIA_TYPE_AUDIO)
{
desc += tr("Audio: ");
desc += decoderName;
}
else
continue;
desc += "\n";
}
AVDictionaryEntry* pComment = av_dict_get(pContext->metadata, "comment", NULL, 0);
if (pComment)
{
// Video comment. We expect a simple key value storage in a particular format
// and parse it here so the key names can be localized.
desc += QString("\n");
QStringList strings = QString(pComment->value).split('\n');
QString sPlayer, sTheme, sMap, sRecord;
for(int i=0; i < strings.count(); i++)
{
QString s = strings.at(i);
// Original key names are in English, like:
// Key: Value
if (s.startsWith("Player: "))
sPlayer = QString(s.mid(8));
else if (s.startsWith("Theme: "))
sTheme = QString(s.mid(7));
else if (s.startsWith("Map: "))
sMap = QString(s.mid(5));
else if (s.startsWith("Record: "))
sRecord = QString(s.mid(8));
}
if(!sPlayer.isNull())
desc += QString(tr("Player: %1")).arg(sPlayer) + "\n";
if(!sTheme.isNull())
desc += QString(tr("Theme: %1")).arg(sTheme) + "\n";
if(!sMap.isNull())
desc += QString(tr("Map: %1")).arg(sMap) + "\n";
if(!sRecord.isNull())
//: As in ‘recording’
desc += QString(tr("Record: %1")).arg(sRecord);
}
avformat_close_input(&pContext);
return desc;
}
#else
LibavInteraction::LibavInteraction() : QObject()
{
}
void LibavInteraction::fillFormats(QComboBox * pFormats)
{
Q_UNUSED(pFormats);
}
void LibavInteraction::fillCodecs(const QString & format, QComboBox * pVCodecs, QComboBox * pACodecs)
{
Q_UNUSED(format);
Q_UNUSED(pVCodecs);
Q_UNUSED(pACodecs);
}
QString LibavInteraction::getExtension(const QString & format)
{
Q_UNUSED(format);
return QString();
}
QString LibavInteraction::getFileInfo(const QString & filepath)
{
Q_UNUSED(filepath);
return QString();
}
#endif
LibavInteraction & LibavInteraction::instance()
{
static LibavInteraction instance;
return instance;
}
|