2012-09-14 15:51:26 +00:00
|
|
|
/*
|
2012-12-28 10:41:30 +00:00
|
|
|
* muxing using libavformat
|
2012-09-14 15:51:26 +00:00
|
|
|
* Copyright (C) 2010 Nicolas George <george@nsup.org>
|
2012-12-28 10:41:30 +00:00
|
|
|
* Copyright (C) 2011-2012 Rudolf Polzer <divVerent@xonotic.org>
|
2012-09-14 15:51:26 +00:00
|
|
|
*
|
2012-12-28 10:41:30 +00:00
|
|
|
* This file is part of mpv.
|
2012-09-14 15:51:26 +00:00
|
|
|
*
|
|
|
|
* MPlayer 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.
|
|
|
|
*
|
|
|
|
* MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "encode_lavc.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "core/mp_msg.h"
|
|
|
|
#include "video/vfcap.h"
|
|
|
|
#include "core/options.h"
|
2012-09-14 15:51:26 +00:00
|
|
|
#include "osdep/timer.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "video/out/vo.h"
|
2012-09-14 15:51:26 +00:00
|
|
|
#include "talloc.h"
|
|
|
|
#include "stream/stream.h"
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
static int set_to_avdictionary(AVDictionary **dictp, const char *key,
|
|
|
|
const char *val)
|
2012-09-14 15:51:26 +00:00
|
|
|
{
|
2012-10-01 08:43:47 +00:00
|
|
|
char keybuf[1024];
|
|
|
|
char valuebuf[1024];
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (key == NULL) {
|
|
|
|
// we need to split at equals sign
|
|
|
|
const char *equals = strchr(val, '=');
|
|
|
|
if (!equals || equals - val >= sizeof(keybuf)) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"encode-lavc: option '%s' does not contain an equals sign\n",
|
|
|
|
val);
|
|
|
|
return 0;
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
2012-10-01 08:43:47 +00:00
|
|
|
memcpy(keybuf, val, equals - val);
|
|
|
|
keybuf[equals - val] = 0;
|
|
|
|
key = keybuf;
|
|
|
|
val = equals + 1;
|
|
|
|
}
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
// hack: support "qscale" key as virtual "global_quality" key that multiplies by QP2LAMBDA
|
|
|
|
if (!strcmp(key, "qscale")) {
|
|
|
|
key = "global_quality";
|
|
|
|
snprintf(valuebuf, sizeof(valuebuf),
|
|
|
|
"%.1s(%s)*QP2LAMBDA",
|
|
|
|
(val[0] == '+' || val[0] == '-') ? val : "",
|
|
|
|
(val[0] == '+' || val[0] == '-') ? val + 1 : val);
|
|
|
|
valuebuf[sizeof(valuebuf) - 1] = 0;
|
|
|
|
val = valuebuf;
|
|
|
|
}
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_V,
|
|
|
|
"encode-lavc: setting value '%s' for key '%s'\n",
|
|
|
|
val,
|
|
|
|
key);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (av_dict_set(dictp, key, *val ? val : NULL,
|
|
|
|
(val[0] == '+' || val[0] == '-') ? AV_DICT_APPEND : 0) >= 0)
|
|
|
|
return 1;
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
return 0;
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool value_has_flag(const char *value, const char *flag)
|
|
|
|
{
|
|
|
|
bool state = true;
|
|
|
|
bool ret = false;
|
2012-10-01 08:43:47 +00:00
|
|
|
while (*value) {
|
2012-09-14 15:51:26 +00:00
|
|
|
size_t l = strcspn(value, "+-");
|
2012-10-01 08:43:47 +00:00
|
|
|
if (l == 0) {
|
2012-09-14 15:51:26 +00:00
|
|
|
state = (*value == '+');
|
|
|
|
++value;
|
2012-10-01 08:43:47 +00:00
|
|
|
} else {
|
|
|
|
if (l == strlen(flag))
|
|
|
|
if (!memcmp(value, flag, l))
|
2012-09-14 15:51:26 +00:00
|
|
|
ret = state;
|
|
|
|
value += l;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CHECK_FAIL(ctx, val) \
|
2012-10-01 08:43:47 +00:00
|
|
|
if (ctx && (ctx->failed || ctx->finished)) { \
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_ERR, \
|
|
|
|
"Called a function on a %s encoding context. Bailing out.\n", \
|
|
|
|
ctx->failed ? "failed" : "finished"); \
|
2012-09-14 15:51:26 +00:00
|
|
|
return val; \
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_available(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
return ctx && ctx->avc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_oformat_flags(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
return ctx->avc ? ctx->avc->oformat->flags : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct encode_lavc_context *encode_lavc_init(struct encode_output_conf *options)
|
|
|
|
{
|
|
|
|
struct encode_lavc_context *ctx;
|
|
|
|
|
|
|
|
ctx = talloc_zero(NULL, struct encode_lavc_context);
|
|
|
|
encode_lavc_discontinuity(ctx);
|
|
|
|
ctx->options = options;
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
ctx->avc = avformat_alloc_context();
|
|
|
|
|
|
|
|
if (ctx->options->format) {
|
|
|
|
char *tok;
|
|
|
|
const char *in = ctx->options->format;
|
|
|
|
while (*in) {
|
|
|
|
tok = av_get_token(&in, ",");
|
|
|
|
ctx->avc->oformat = av_guess_format(tok, ctx->options->file, NULL);
|
|
|
|
av_free(tok);
|
|
|
|
if (ctx->avc->oformat)
|
|
|
|
break;
|
|
|
|
if (*in)
|
|
|
|
++in;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
ctx->avc->oformat = av_guess_format(NULL, ctx->options->file, NULL);
|
|
|
|
|
|
|
|
if (!ctx->avc->oformat) {
|
|
|
|
encode_lavc_fail(ctx, "encode-lavc: format not found\n");
|
2012-09-14 15:51:26 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
av_strlcpy(ctx->avc->filename, ctx->options->file,
|
|
|
|
sizeof(ctx->avc->filename));
|
|
|
|
|
2012-09-14 15:51:26 +00:00
|
|
|
ctx->foptions = NULL;
|
|
|
|
if (ctx->options->fopts) {
|
|
|
|
char **p;
|
|
|
|
for (p = ctx->options->fopts; *p; ++p) {
|
2012-10-01 08:43:47 +00:00
|
|
|
if (!set_to_avdictionary(&ctx->foptions, NULL, *p))
|
2012-09-14 15:51:26 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"encode-lavc: could not set option %s\n", *p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->options->vcodec) {
|
|
|
|
char *tok;
|
|
|
|
const char *in = ctx->options->vcodec;
|
|
|
|
while (*in) {
|
|
|
|
tok = av_get_token(&in, ",");
|
|
|
|
ctx->vc = avcodec_find_encoder_by_name(tok);
|
|
|
|
av_free(tok);
|
|
|
|
if (ctx->vc && ctx->vc->type != AVMEDIA_TYPE_VIDEO)
|
|
|
|
ctx->vc = NULL;
|
|
|
|
if (ctx->vc)
|
|
|
|
break;
|
|
|
|
if (*in)
|
|
|
|
++in;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
ctx->vc = avcodec_find_encoder(av_guess_codec(ctx->avc->oformat, NULL,
|
2012-10-01 08:43:47 +00:00
|
|
|
ctx->avc->filename, NULL,
|
|
|
|
AVMEDIA_TYPE_VIDEO));
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
if (ctx->options->acodec) {
|
|
|
|
char *tok;
|
|
|
|
const char *in = ctx->options->acodec;
|
|
|
|
while (*in) {
|
|
|
|
tok = av_get_token(&in, ",");
|
|
|
|
ctx->ac = avcodec_find_encoder_by_name(tok);
|
|
|
|
av_free(tok);
|
|
|
|
if (ctx->ac && ctx->ac->type != AVMEDIA_TYPE_AUDIO)
|
|
|
|
ctx->ac = NULL;
|
|
|
|
if (ctx->ac)
|
|
|
|
break;
|
|
|
|
if (*in)
|
|
|
|
++in;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
ctx->ac = avcodec_find_encoder(av_guess_codec(ctx->avc->oformat, NULL,
|
2012-10-01 08:43:47 +00:00
|
|
|
ctx->avc->filename, NULL,
|
|
|
|
AVMEDIA_TYPE_AUDIO));
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
if (!ctx->vc && !ctx->ac) {
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_lavc_fail(
|
|
|
|
ctx, "encode-lavc: neither audio nor video codec was found\n");
|
2012-09-14 15:51:26 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* taken from ffmpeg unchanged
|
|
|
|
* TODO turn this into an option if anyone needs this */
|
|
|
|
|
|
|
|
ctx->avc->max_delay = 0.7 * AV_TIME_BASE;
|
|
|
|
|
|
|
|
ctx->abytes = 0;
|
|
|
|
ctx->vbytes = 0;
|
|
|
|
ctx->frames = 0;
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (options->video_first)
|
2012-09-29 13:04:40 +00:00
|
|
|
ctx->video_first = true;
|
2012-10-01 08:43:47 +00:00
|
|
|
if (options->audio_first)
|
2012-09-29 13:04:40 +00:00
|
|
|
ctx->audio_first = true;
|
|
|
|
|
2012-09-14 15:51:26 +00:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_start(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
AVDictionaryEntry *de;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
if (ctx->header_written < 0)
|
|
|
|
return 0;
|
|
|
|
if (ctx->header_written > 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
|
|
|
|
if (ctx->expect_video) {
|
|
|
|
for (i = 0; i < ctx->avc->nb_streams; ++i)
|
|
|
|
if (ctx->avc->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
|
|
|
|
break;
|
2012-11-01 11:25:50 +00:00
|
|
|
if (i >= ctx->avc->nb_streams) {
|
|
|
|
encode_lavc_fail(ctx,
|
|
|
|
"encode-lavc: video stream missing, invalid codec?\n");
|
2012-09-14 15:51:26 +00:00
|
|
|
return 0;
|
2012-11-01 11:25:50 +00:00
|
|
|
}
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
if (ctx->expect_audio) {
|
|
|
|
for (i = 0; i < ctx->avc->nb_streams; ++i)
|
|
|
|
if (ctx->avc->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO)
|
|
|
|
break;
|
2012-11-01 11:25:50 +00:00
|
|
|
if (i >= ctx->avc->nb_streams) {
|
|
|
|
encode_lavc_fail(ctx,
|
|
|
|
"encode-lavc: audio stream missing, invalid codec?\n");
|
2012-09-14 15:51:26 +00:00
|
|
|
return 0;
|
2012-11-01 11:25:50 +00:00
|
|
|
}
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx->header_written = -1;
|
|
|
|
|
|
|
|
if (!(ctx->avc->oformat->flags & AVFMT_NOFILE)) {
|
2012-12-01 16:15:44 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Opening output file: %s\n",
|
|
|
|
ctx->avc->filename);
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (avio_open(&ctx->avc->pb, ctx->avc->filename,
|
|
|
|
AVIO_FLAG_WRITE) < 0) {
|
|
|
|
encode_lavc_fail(ctx, "encode-lavc: could not open '%s'\n",
|
|
|
|
ctx->avc->filename);
|
2012-09-14 15:51:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->t0 = GetTimerMS();
|
|
|
|
|
2012-12-01 16:15:44 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Opening muxer: %s [%s]\n",
|
|
|
|
ctx->avc->oformat->long_name, ctx->avc->oformat->name);
|
|
|
|
|
2012-09-14 15:51:26 +00:00
|
|
|
if (avformat_write_header(ctx->avc, &ctx->foptions) < 0) {
|
|
|
|
encode_lavc_fail(ctx, "encode-lavc: could not write header\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (de = NULL; (de = av_dict_get(ctx->foptions, "", de,
|
|
|
|
AV_DICT_IGNORE_SUFFIX));)
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, "ofopts: key '%s' not found.\n", de->key);
|
2012-09-14 15:51:26 +00:00
|
|
|
av_dict_free(&ctx->foptions);
|
|
|
|
|
|
|
|
ctx->header_written = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void encode_lavc_free(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
if (!ctx)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!ctx->finished)
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_lavc_fail(ctx,
|
|
|
|
"called encode_lavc_free without encode_lavc_finish\n");
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
talloc_free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void encode_lavc_finish(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
if (!ctx)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ctx->finished)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ctx->avc) {
|
|
|
|
if (ctx->header_written > 0)
|
|
|
|
av_write_trailer(ctx->avc); // this is allowed to fail
|
|
|
|
|
|
|
|
for (i = 0; i < ctx->avc->nb_streams; i++) {
|
|
|
|
switch (ctx->avc->streams[i]->codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
if (ctx->twopass_bytebuffer_v) {
|
|
|
|
char *stats = ctx->avc->streams[i]->codec->stats_out;
|
|
|
|
if (stats)
|
|
|
|
stream_write_buffer(ctx->twopass_bytebuffer_v,
|
|
|
|
stats, strlen(stats));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
if (ctx->twopass_bytebuffer_a) {
|
|
|
|
char *stats = ctx->avc->streams[i]->codec->stats_out;
|
|
|
|
if (stats)
|
|
|
|
stream_write_buffer(ctx->twopass_bytebuffer_a,
|
|
|
|
stats, strlen(stats));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
avcodec_close(ctx->avc->streams[i]->codec);
|
|
|
|
talloc_free(ctx->avc->streams[i]->codec->stats_in);
|
|
|
|
av_free(ctx->avc->streams[i]->codec);
|
|
|
|
av_free(ctx->avc->streams[i]->info);
|
|
|
|
av_free(ctx->avc->streams[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->twopass_bytebuffer_v) {
|
|
|
|
free_stream(ctx->twopass_bytebuffer_v);
|
|
|
|
ctx->twopass_bytebuffer_v = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->twopass_bytebuffer_a) {
|
|
|
|
free_stream(ctx->twopass_bytebuffer_a);
|
|
|
|
ctx->twopass_bytebuffer_a = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "vo-lavc: encoded %lld bytes\n",
|
|
|
|
ctx->vbytes);
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "ao-lavc: encoded %lld bytes\n",
|
|
|
|
ctx->abytes);
|
|
|
|
if (ctx->avc->pb) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO,
|
|
|
|
"encode-lavc: muxing overhead %lld bytes\n",
|
|
|
|
(long long) (avio_size(ctx->avc->pb) - ctx->vbytes
|
|
|
|
- ctx->abytes));
|
|
|
|
avio_close(ctx->avc->pb);
|
|
|
|
}
|
|
|
|
|
|
|
|
av_free(ctx->avc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->finished = true;
|
|
|
|
}
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
static void encode_2pass_prepare(struct encode_lavc_context *ctx,
|
|
|
|
AVDictionary **dictp,
|
2012-09-14 15:51:26 +00:00
|
|
|
AVStream *stream, struct stream **bytebuf,
|
|
|
|
const char *prefix)
|
|
|
|
{
|
|
|
|
if (!*bytebuf) {
|
|
|
|
char buf[sizeof(ctx->avc->filename) + 12];
|
|
|
|
AVDictionaryEntry *de = av_dict_get(ctx->voptions, "flags", NULL, 0);
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s-%s-pass1.log", ctx->avc->filename,
|
|
|
|
prefix);
|
|
|
|
buf[sizeof(buf) - 1] = 0;
|
|
|
|
|
|
|
|
if (value_has_flag(de ? de->value : "", "pass2")) {
|
|
|
|
if (!(*bytebuf = open_stream(buf, NULL, NULL))) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, "%s: could not open '%s', "
|
|
|
|
"disabling 2-pass encoding at pass 2\n", prefix, buf);
|
|
|
|
stream->codec->flags &= ~CODEC_FLAG_PASS2;
|
2012-10-01 08:43:47 +00:00
|
|
|
set_to_avdictionary(dictp, "flags", "-pass2");
|
2012-09-14 15:51:26 +00:00
|
|
|
} else {
|
|
|
|
struct bstr content = stream_read_complete(*bytebuf, NULL,
|
|
|
|
1000000000, 1);
|
|
|
|
if (content.start == NULL) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, "%s: could not read '%s', "
|
|
|
|
"disabling 2-pass encoding at pass 1\n",
|
|
|
|
prefix, ctx->avc->filename);
|
|
|
|
} else {
|
|
|
|
content.start[content.len] = 0;
|
|
|
|
stream->codec->stats_in = content.start;
|
|
|
|
}
|
|
|
|
free_stream(*bytebuf);
|
|
|
|
*bytebuf = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value_has_flag(de ? de->value : "", "pass1")) {
|
|
|
|
if (!(*bytebuf = open_output_stream(buf, NULL))) {
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(
|
|
|
|
MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"%s: could not open '%s', disabling "
|
|
|
|
"2-pass encoding at pass 1\n",
|
|
|
|
prefix, ctx->avc->filename);
|
|
|
|
set_to_avdictionary(dictp, "flags", "-pass1");
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AVStream *encode_lavc_alloc_stream(struct encode_lavc_context *ctx,
|
|
|
|
enum AVMediaType mt)
|
|
|
|
{
|
|
|
|
AVDictionaryEntry *de;
|
|
|
|
AVStream *stream = NULL;
|
|
|
|
char **p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
CHECK_FAIL(ctx, NULL);
|
|
|
|
|
|
|
|
if (ctx->header_written)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < ctx->avc->nb_streams; ++i)
|
|
|
|
if (ctx->avc->streams[i]->codec->codec_type == mt)
|
|
|
|
// already have a stream of that type, this cannot really happen
|
|
|
|
return NULL;
|
|
|
|
|
2012-09-29 13:04:40 +00:00
|
|
|
if (ctx->avc->nb_streams == 0) {
|
|
|
|
// if this stream isn't stream #0, allocate a dummy stream first for
|
|
|
|
// the next loop to use
|
|
|
|
if (mt == AVMEDIA_TYPE_VIDEO && ctx->audio_first) {
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO,
|
|
|
|
"vo-lavc: preallocated audio stream for later use\n");
|
2012-09-29 13:04:40 +00:00
|
|
|
avformat_new_stream(ctx->avc, NULL); // this one is AVMEDIA_TYPE_UNKNOWN for now
|
|
|
|
}
|
|
|
|
if (mt == AVMEDIA_TYPE_AUDIO && ctx->video_first) {
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO,
|
|
|
|
"ao-lavc: preallocated video stream for later use\n");
|
2012-09-29 13:04:40 +00:00
|
|
|
avformat_new_stream(ctx->avc, NULL); // this one is AVMEDIA_TYPE_UNKNOWN for now
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// find possibly preallocated stream
|
|
|
|
for (i = 0; i < ctx->avc->nb_streams; ++i)
|
|
|
|
if (ctx->avc->streams[i]->codec->codec_type == AVMEDIA_TYPE_UNKNOWN) // preallocated stream
|
|
|
|
stream = ctx->avc->streams[i];
|
|
|
|
}
|
|
|
|
if (!stream)
|
|
|
|
stream = avformat_new_stream(ctx->avc, NULL);
|
|
|
|
|
2012-09-14 15:51:26 +00:00
|
|
|
if (ctx->timebase.den == 0) {
|
|
|
|
AVRational r;
|
|
|
|
|
|
|
|
if (ctx->options->fps > 0)
|
|
|
|
r = av_d2q(ctx->options->fps, ctx->options->fps * 1001 + 2);
|
|
|
|
else if (ctx->options->autofps && vo_fps > 0) {
|
|
|
|
r = av_d2q(vo_fps, vo_fps * 1001 + 2);
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(
|
|
|
|
MSGT_ENCODE, MSGL_INFO, "vo-lavc: option -ofps not specified "
|
|
|
|
"but -oautofps is active, using guess of %u/%u\n",
|
|
|
|
(unsigned)r.num, (unsigned)r.den);
|
2012-09-14 15:51:26 +00:00
|
|
|
} else {
|
|
|
|
// we want to handle:
|
|
|
|
// 1/25
|
|
|
|
// 1001/24000
|
|
|
|
// 1001/30000
|
|
|
|
// for this we would need 120000fps...
|
|
|
|
// however, mpeg-4 only allows 16bit values
|
|
|
|
// so let's take 1001/30000 out
|
|
|
|
r.num = 24000;
|
|
|
|
r.den = 1;
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(
|
|
|
|
MSGT_ENCODE, MSGL_INFO, "vo-lavc: option -ofps not specified "
|
|
|
|
"and fps could not be inferred, using guess of %u/%u\n",
|
|
|
|
(unsigned)r.num, (unsigned)r.den);
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->vc && ctx->vc->supported_framerates)
|
|
|
|
r = ctx->vc->supported_framerates[av_find_nearest_q_idx(r,
|
|
|
|
ctx->vc->supported_framerates)];
|
|
|
|
|
|
|
|
ctx->timebase.num = r.den;
|
|
|
|
ctx->timebase.den = r.num;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (mt) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
if (!ctx->vc) {
|
|
|
|
encode_lavc_fail(ctx, "vo-lavc: encoder not found\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-09-29 13:04:25 +00:00
|
|
|
avcodec_get_context_defaults3(stream->codec, ctx->vc);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
// stream->time_base = ctx->timebase;
|
|
|
|
// doing this breaks mpeg2ts in ffmpeg
|
|
|
|
// which doesn't properly force the time base to be 90000
|
|
|
|
// furthermore, ffmpeg.c doesn't do this either and works
|
|
|
|
|
|
|
|
stream->codec->time_base = ctx->timebase;
|
|
|
|
|
|
|
|
ctx->voptions = NULL;
|
|
|
|
|
|
|
|
if (ctx->options->vopts)
|
|
|
|
for (p = ctx->options->vopts; *p; ++p)
|
2012-10-01 08:43:47 +00:00
|
|
|
if (!set_to_avdictionary(&ctx->voptions, NULL, *p))
|
2012-09-14 15:51:26 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"vo-lavc: could not set option %s\n", *p);
|
|
|
|
|
|
|
|
de = av_dict_get(ctx->voptions, "global_quality", NULL, 0);
|
2012-10-01 08:43:47 +00:00
|
|
|
if (de)
|
|
|
|
set_to_avdictionary(&ctx->voptions, "flags", "+qscale");
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
if (ctx->avc->oformat->flags & AVFMT_GLOBALHEADER)
|
2012-10-01 08:43:47 +00:00
|
|
|
set_to_avdictionary(&ctx->voptions, "flags", "+global_header");
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_2pass_prepare(ctx, &ctx->voptions, stream,
|
|
|
|
&ctx->twopass_bytebuffer_v,
|
2012-09-14 15:51:26 +00:00
|
|
|
"vo-lavc");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
if (!ctx->ac) {
|
|
|
|
encode_lavc_fail(ctx, "ao-lavc: encoder not found\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-09-29 13:04:25 +00:00
|
|
|
avcodec_get_context_defaults3(stream->codec, ctx->ac);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
stream->codec->time_base = ctx->timebase;
|
|
|
|
|
|
|
|
ctx->aoptions = NULL;
|
|
|
|
|
|
|
|
if (ctx->options->aopts)
|
|
|
|
for (p = ctx->options->aopts; *p; ++p)
|
2012-10-01 08:43:47 +00:00
|
|
|
if (!set_to_avdictionary(&ctx->aoptions, NULL, *p))
|
2012-09-14 15:51:26 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"ao-lavc: could not set option %s\n", *p);
|
|
|
|
|
|
|
|
de = av_dict_get(ctx->aoptions, "global_quality", NULL, 0);
|
2012-10-01 08:43:47 +00:00
|
|
|
if (de)
|
|
|
|
set_to_avdictionary(&ctx->aoptions, "flags", "+qscale");
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
if (ctx->avc->oformat->flags & AVFMT_GLOBALHEADER)
|
2012-10-01 08:43:47 +00:00
|
|
|
set_to_avdictionary(&ctx->aoptions, "flags", "+global_header");
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_2pass_prepare(ctx, &ctx->aoptions, stream,
|
|
|
|
&ctx->twopass_bytebuffer_a,
|
2012-09-14 15:51:26 +00:00
|
|
|
"ao-lavc");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
encode_lavc_fail(ctx, "encode-lavc: requested invalid stream type\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVCodec *encode_lavc_get_codec(struct encode_lavc_context *ctx,
|
|
|
|
AVStream *stream)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, NULL);
|
|
|
|
|
|
|
|
switch (stream->codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
return ctx->vc;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
return ctx->ac;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_open_codec(struct encode_lavc_context *ctx, AVStream *stream)
|
|
|
|
{
|
|
|
|
AVDictionaryEntry *de;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
CHECK_FAIL(ctx, -1);
|
|
|
|
|
|
|
|
switch (stream->codec->codec_type) {
|
2012-10-01 08:43:47 +00:00
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
2012-12-01 16:15:44 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Opening video encoder: %s [%s]\n",
|
|
|
|
ctx->vc->long_name, ctx->vc->name);
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (ctx->vc->capabilities & CODEC_CAP_EXPERIMENTAL) {
|
|
|
|
stream->codec->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, _(
|
|
|
|
"\n\n"
|
|
|
|
" ********************************************\n"
|
|
|
|
" **** Experimental VIDEO codec selected! ****\n"
|
|
|
|
" ********************************************\n\n"
|
|
|
|
"This means the output file may be broken or bad.\n"
|
|
|
|
"Possible reasons, problems, workarounds:\n"
|
|
|
|
"- Codec implementation in ffmpeg/libav is not finished yet.\n"
|
|
|
|
" Try updating ffmpeg or libav.\n"
|
|
|
|
"- Bad picture quality, blocks, blurriness.\n"
|
|
|
|
" Experiment with codec settings (-ovcopts) to maybe still get the\n"
|
|
|
|
" desired quality output at the expense of bitrate.\n"
|
|
|
|
"- Slow compression.\n"
|
|
|
|
" Bear with it.\n"
|
|
|
|
"- Crashes.\n"
|
|
|
|
" Happens. Try varying options to work around.\n"
|
|
|
|
"If none of this helps you, try another codec in place of %s.\n\n"),
|
|
|
|
ctx->vc->name);
|
|
|
|
}
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
ret = avcodec_open2(stream->codec, ctx->vc, &ctx->voptions);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
// complain about all remaining options, then free the dict
|
|
|
|
for (de = NULL; (de = av_dict_get(ctx->voptions, "", de,
|
|
|
|
AV_DICT_IGNORE_SUFFIX));)
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, "ovcopts: key '%s' not found.\n",
|
|
|
|
de->key);
|
|
|
|
av_dict_free(&ctx->voptions);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
2012-12-01 16:15:44 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Opening audio encoder: %s [%s]\n",
|
|
|
|
ctx->ac->long_name, ctx->ac->name);
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (ctx->ac->capabilities & CODEC_CAP_EXPERIMENTAL) {
|
|
|
|
stream->codec->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, _(
|
|
|
|
"\n\n"
|
|
|
|
" ********************************************\n"
|
|
|
|
" **** Experimental AUDIO codec selected! ****\n"
|
|
|
|
" ********************************************\n\n"
|
|
|
|
"This means the output file may be broken or bad.\n"
|
|
|
|
"Possible reasons, problems, workarounds:\n"
|
|
|
|
"- Codec implementation in ffmpeg/libav is not finished yet.\n"
|
|
|
|
" Try updating ffmpeg or libav.\n"
|
|
|
|
"- Bad sound quality, noise, clicking, whistles, choppiness.\n"
|
|
|
|
" Experiment with codec settings (-oacopts) to maybe still get the\n"
|
|
|
|
" desired quality output at the expense of bitrate.\n"
|
|
|
|
"- Slow compression.\n"
|
|
|
|
" Bear with it.\n"
|
|
|
|
"- Crashes.\n"
|
|
|
|
" Happens. Try varying options to work around.\n"
|
|
|
|
"If none of this helps you, try another codec in place of %s.\n\n"),
|
|
|
|
ctx->ac->name);
|
|
|
|
}
|
|
|
|
ret = avcodec_open2(stream->codec, ctx->ac, &ctx->aoptions);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
// complain about all remaining options, then free the dict
|
|
|
|
for (de = NULL; (de = av_dict_get(ctx->aoptions, "", de,
|
|
|
|
AV_DICT_IGNORE_SUFFIX));)
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN, "oacopts: key '%s' not found.\n",
|
|
|
|
de->key);
|
|
|
|
av_dict_free(&ctx->aoptions);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -1;
|
|
|
|
break;
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (ret < 0)
|
|
|
|
encode_lavc_fail(ctx,
|
|
|
|
"unable to open encoder (see above for the cause)");
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void encode_lavc_write_stats(struct encode_lavc_context *ctx, AVStream *stream)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, );
|
|
|
|
|
|
|
|
switch (stream->codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
if (ctx->twopass_bytebuffer_v)
|
|
|
|
if (stream->codec->stats_out)
|
|
|
|
stream_write_buffer(ctx->twopass_bytebuffer_v,
|
|
|
|
stream->codec->stats_out,
|
|
|
|
strlen(stream->codec->stats_out));
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
if (ctx->twopass_bytebuffer_a)
|
|
|
|
if (stream->codec->stats_out)
|
|
|
|
stream_write_buffer(ctx->twopass_bytebuffer_a,
|
|
|
|
stream->codec->stats_out,
|
|
|
|
strlen(stream->codec->stats_out));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_write_frame(struct encode_lavc_context *ctx, AVPacket *packet)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
CHECK_FAIL(ctx, -1);
|
|
|
|
|
|
|
|
if (ctx->header_written <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(
|
|
|
|
MSGT_ENCODE, MSGL_DBG2,
|
|
|
|
"encode-lavc: write frame: stream %d ptsi %d (%f) dtsi %d (%f) size %d\n",
|
|
|
|
(int)packet->stream_index,
|
|
|
|
(int)packet->pts,
|
|
|
|
packet->pts
|
|
|
|
* (double)ctx->avc->streams[packet->stream_index]->time_base.num
|
|
|
|
/ (double)ctx->avc->streams[packet->stream_index]->time_base.den,
|
|
|
|
(int)packet->dts,
|
|
|
|
packet->dts
|
|
|
|
* (double)ctx->avc->streams[packet->stream_index]->time_base.num
|
|
|
|
/ (double)ctx->avc->streams[packet->stream_index]->time_base.den,
|
|
|
|
(int)packet->size);
|
2012-09-14 15:51:26 +00:00
|
|
|
|
|
|
|
switch (ctx->avc->streams[packet->stream_index]->codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
ctx->vbytes += packet->size;
|
|
|
|
++ctx->frames;
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
ctx->abytes += packet->size;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = av_interleaved_write_frame(ctx->avc, packet);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_supports_pixfmt(struct encode_lavc_context *ctx,
|
|
|
|
enum PixelFormat pix_fmt)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
|
|
|
|
if (!ctx->vc)
|
|
|
|
return 0;
|
|
|
|
if (pix_fmt == PIX_FMT_NONE)
|
|
|
|
return 0;
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
if (!ctx->vc->pix_fmts)
|
2012-09-14 15:51:26 +00:00
|
|
|
return VFCAP_CSP_SUPPORTED;
|
2012-10-01 08:43:47 +00:00
|
|
|
else {
|
2012-09-14 15:51:26 +00:00
|
|
|
const enum PixelFormat *p;
|
|
|
|
for (p = ctx->vc->pix_fmts; *p >= 0; ++p) {
|
|
|
|
if (pix_fmt == *p)
|
|
|
|
return VFCAP_CSP_SUPPORTED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void encode_lavc_discontinuity(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
if (!ctx)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CHECK_FAIL(ctx, );
|
|
|
|
|
|
|
|
ctx->audio_pts_offset = MP_NOPTS_VALUE;
|
|
|
|
ctx->last_video_in_pts = MP_NOPTS_VALUE;
|
|
|
|
ctx->discontinuity_pts_offset = MP_NOPTS_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void encode_lavc_printoptions(void *obj, const char *indent,
|
|
|
|
const char *subindent, const char *unit,
|
|
|
|
int filter_and, int filter_eq)
|
|
|
|
{
|
|
|
|
const AVOption *opt = NULL;
|
|
|
|
char optbuf[32];
|
|
|
|
while ((opt = av_opt_next(obj, opt))) {
|
|
|
|
// if flags are 0, it simply hasn't been filled in yet and may be
|
|
|
|
// potentially useful
|
|
|
|
if (opt->flags)
|
|
|
|
if ((opt->flags & filter_and) != filter_eq)
|
|
|
|
continue;
|
|
|
|
/* Don't print CONST's on level one.
|
|
|
|
* Don't print anything but CONST's on level two.
|
|
|
|
* Only print items from the requested unit.
|
|
|
|
*/
|
2012-11-03 10:37:04 +00:00
|
|
|
if (!unit && opt->type == AV_OPT_TYPE_CONST)
|
2012-09-14 15:51:26 +00:00
|
|
|
continue;
|
2012-11-03 10:37:04 +00:00
|
|
|
else if (unit && opt->type != AV_OPT_TYPE_CONST)
|
2012-09-14 15:51:26 +00:00
|
|
|
continue;
|
2012-11-03 10:37:04 +00:00
|
|
|
else if (unit && opt->type == AV_OPT_TYPE_CONST
|
2012-09-14 15:51:26 +00:00
|
|
|
&& strcmp(unit, opt->unit))
|
|
|
|
continue;
|
2012-11-03 10:37:04 +00:00
|
|
|
else if (unit && opt->type == AV_OPT_TYPE_CONST)
|
2012-09-14 15:51:26 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "%s", subindent);
|
|
|
|
else
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "%s", indent);
|
|
|
|
|
|
|
|
switch (opt->type) {
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_FLAGS:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<flags>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_INT:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<int>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_INT64:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<int64>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_DOUBLE:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<double>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_FLOAT:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<float>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_STRING:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<string>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_RATIONAL:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<rational>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_BINARY:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s=<binary>", opt->name);
|
|
|
|
break;
|
2012-11-03 10:37:04 +00:00
|
|
|
case AV_OPT_TYPE_CONST:
|
2012-09-14 15:51:26 +00:00
|
|
|
snprintf(optbuf, sizeof(optbuf), " [+-]%s", opt->name);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
snprintf(optbuf, sizeof(optbuf), "%s", opt->name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
optbuf[sizeof(optbuf) - 1] = 0;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "%-32s ", optbuf);
|
|
|
|
if (opt->help)
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, " %s", opt->help);
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "\n");
|
2012-11-03 10:37:04 +00:00
|
|
|
if (opt->unit && opt->type != AV_OPT_TYPE_CONST)
|
2012-09-14 15:51:26 +00:00
|
|
|
encode_lavc_printoptions(obj, indent, subindent, opt->unit,
|
|
|
|
filter_and, filter_eq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool encode_lavc_showhelp(struct MPOpts *opts)
|
|
|
|
{
|
|
|
|
bool help_output = false;
|
2012-10-01 08:43:47 +00:00
|
|
|
if (av_codec_next(NULL) == NULL)
|
2012-09-14 15:51:26 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_ERR, "NO CODECS\n");
|
2012-10-01 08:43:47 +00:00
|
|
|
#define CHECKS(str) ((str) && \
|
|
|
|
strcmp((str), "help") == 0 ? (help_output |= 1) : 0)
|
|
|
|
#define CHECKV(strv) ((strv) && (strv)[0] && \
|
|
|
|
strcmp((strv)[0], "help") == 0 ? (help_output |= 1) : 0)
|
2012-09-14 15:51:26 +00:00
|
|
|
if (CHECKS(opts->encode_output.format)) {
|
|
|
|
AVOutputFormat *c = NULL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Available output formats:\n");
|
|
|
|
while ((c = av_oformat_next(c)))
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, " -of %-13s %s\n", c->name,
|
|
|
|
c->long_name ? c->long_name : "");
|
|
|
|
av_free(c);
|
|
|
|
}
|
|
|
|
if (CHECKV(opts->encode_output.fopts)) {
|
|
|
|
AVFormatContext *c = avformat_alloc_context();
|
|
|
|
AVOutputFormat *format = NULL;
|
2012-10-01 08:43:47 +00:00
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO,
|
|
|
|
"Available output format ctx->options:\n");
|
2012-09-14 15:51:26 +00:00
|
|
|
encode_lavc_printoptions(c, " -ofopts ", " ", NULL,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM);
|
|
|
|
av_free(c);
|
|
|
|
while ((format = av_oformat_next(format))) {
|
|
|
|
if (format->priv_class) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Additionally, for -of %s:\n",
|
|
|
|
format->name);
|
|
|
|
encode_lavc_printoptions(&format->priv_class, " -ofopts ",
|
|
|
|
" ", NULL,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (CHECKV(opts->encode_output.vopts)) {
|
|
|
|
AVCodecContext *c = avcodec_alloc_context3(NULL);
|
|
|
|
AVCodec *codec = NULL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO,
|
|
|
|
"Available output video codec ctx->options:\n");
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_lavc_printoptions(
|
|
|
|
c, " -ovcopts ", " ", NULL,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_VIDEO_PARAM,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_VIDEO_PARAM);
|
2012-09-14 15:51:26 +00:00
|
|
|
av_free(c);
|
|
|
|
while ((codec = av_codec_next(codec))) {
|
|
|
|
if (!av_codec_is_encoder(codec))
|
|
|
|
continue;
|
|
|
|
if (codec->type != AVMEDIA_TYPE_VIDEO)
|
|
|
|
continue;
|
2012-10-01 08:43:47 +00:00
|
|
|
if (opts->encode_output.vcodec && opts->encode_output.vcodec[0] &&
|
|
|
|
strcmp(opts->encode_output.vcodec, codec->name) != 0)
|
2012-09-14 15:51:26 +00:00
|
|
|
continue;
|
|
|
|
if (codec->priv_class) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Additionally, for -ovc %s:\n",
|
|
|
|
codec->name);
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_lavc_printoptions(
|
|
|
|
&codec->priv_class, " -ovcopts ",
|
|
|
|
" ", NULL,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_VIDEO_PARAM,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_VIDEO_PARAM);
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (CHECKV(opts->encode_output.aopts)) {
|
|
|
|
AVCodecContext *c = avcodec_alloc_context3(NULL);
|
|
|
|
AVCodec *codec = NULL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO,
|
|
|
|
"Available output audio codec ctx->options:\n");
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_lavc_printoptions(
|
|
|
|
c, " -oacopts ", " ", NULL,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_AUDIO_PARAM,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_AUDIO_PARAM);
|
2012-09-14 15:51:26 +00:00
|
|
|
av_free(c);
|
|
|
|
while ((codec = av_codec_next(codec))) {
|
|
|
|
if (!av_codec_is_encoder(codec))
|
|
|
|
continue;
|
|
|
|
if (codec->type != AVMEDIA_TYPE_AUDIO)
|
|
|
|
continue;
|
2012-10-01 08:43:47 +00:00
|
|
|
if (opts->encode_output.acodec && opts->encode_output.acodec[0] &&
|
|
|
|
strcmp(opts->encode_output.acodec, codec->name) != 0)
|
2012-09-14 15:51:26 +00:00
|
|
|
continue;
|
|
|
|
if (codec->priv_class) {
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Additionally, for -oac %s:\n",
|
|
|
|
codec->name);
|
2012-10-01 08:43:47 +00:00
|
|
|
encode_lavc_printoptions(
|
|
|
|
&codec->priv_class, " -oacopts ",
|
|
|
|
" ", NULL,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_AUDIO_PARAM,
|
|
|
|
AV_OPT_FLAG_ENCODING_PARAM |
|
|
|
|
AV_OPT_FLAG_AUDIO_PARAM);
|
2012-09-14 15:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (CHECKS(opts->encode_output.vcodec)) {
|
|
|
|
AVCodec *c = NULL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Available output video codecs:\n");
|
|
|
|
while ((c = av_codec_next(c))) {
|
|
|
|
if (!av_codec_is_encoder(c))
|
|
|
|
continue;
|
|
|
|
if (c->type != AVMEDIA_TYPE_VIDEO)
|
|
|
|
continue;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, " -ovc %-12s %s\n", c->name,
|
|
|
|
c->long_name ? c->long_name : "");
|
|
|
|
}
|
|
|
|
av_free(c);
|
|
|
|
}
|
|
|
|
if (CHECKS(opts->encode_output.acodec)) {
|
|
|
|
AVCodec *c = NULL;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, "Available output audio codecs:\n");
|
|
|
|
while ((c = av_codec_next(c))) {
|
|
|
|
if (!av_codec_is_encoder(c))
|
|
|
|
continue;
|
|
|
|
if (c->type != AVMEDIA_TYPE_AUDIO)
|
|
|
|
continue;
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_INFO, " -oac %-12s %s\n", c->name,
|
|
|
|
c->long_name ? c->long_name : "");
|
|
|
|
}
|
|
|
|
av_free(c);
|
|
|
|
}
|
|
|
|
return help_output;
|
|
|
|
}
|
|
|
|
|
|
|
|
double encode_lavc_getoffset(struct encode_lavc_context *ctx, AVStream *stream)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
|
|
|
|
switch (stream->codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
return ctx->options->voffset;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
return ctx->options->aoffset;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int encode_lavc_getstatus(struct encode_lavc_context *ctx,
|
|
|
|
char *buf, int bufsize,
|
|
|
|
float relative_position, float playback_time)
|
|
|
|
{
|
|
|
|
float minutes, megabytes, fps, x;
|
|
|
|
float f = FFMAX(0.0001, relative_position);
|
|
|
|
if (!ctx)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
CHECK_FAIL(ctx, -1);
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
minutes = (GetTimerMS() - ctx->t0) / 60000.0 * (1 - f) / f;
|
2012-09-14 15:51:26 +00:00
|
|
|
megabytes = ctx->avc->pb ? (avio_size(ctx->avc->pb) / 1048576.0 / f) : 0;
|
|
|
|
fps = ctx->frames / ((GetTimerMS() - ctx->t0) / 1000.0);
|
|
|
|
x = playback_time / ((GetTimerMS() - ctx->t0) / 1000.0);
|
|
|
|
if (ctx->frames)
|
|
|
|
snprintf(buf, bufsize, "{%.1f%% %.1fmin %.1ffps %.1fMB}",
|
|
|
|
relative_position * 100.0, minutes, fps, megabytes);
|
|
|
|
else
|
|
|
|
snprintf(buf, bufsize, "{%.1f%% %.1fmin %.2fx %.1fMB}",
|
|
|
|
relative_position * 100.0, minutes, x, megabytes);
|
|
|
|
buf[bufsize - 1] = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
void encode_lavc_expect_stream(struct encode_lavc_context *ctx,
|
|
|
|
enum AVMediaType mt)
|
2012-09-14 15:51:26 +00:00
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, );
|
|
|
|
|
2012-10-01 08:43:47 +00:00
|
|
|
switch (mt) {
|
2012-09-14 15:51:26 +00:00
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
ctx->expect_video = true;
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
ctx->expect_audio = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool encode_lavc_didfail(struct encode_lavc_context *ctx)
|
|
|
|
{
|
|
|
|
return ctx && ctx->failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void encode_lavc_fail(struct encode_lavc_context *ctx, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
mp_msg_va(MSGT_ENCODE, MSGL_ERR, format, va);
|
2012-10-01 08:43:47 +00:00
|
|
|
if (ctx->failed)
|
2012-09-14 15:51:26 +00:00
|
|
|
return;
|
|
|
|
ctx->failed = true;
|
|
|
|
encode_lavc_finish(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool encode_lavc_set_csp(struct encode_lavc_context *ctx,
|
|
|
|
AVStream *stream, enum mp_csp csp)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, NULL);
|
|
|
|
|
|
|
|
if (ctx->header_written) {
|
|
|
|
if (stream->codec->colorspace != mp_csp_to_avcol_spc(csp))
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"encode-lavc: can not change color space during encoding\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->codec->colorspace = mp_csp_to_avcol_spc(csp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool encode_lavc_set_csp_levels(struct encode_lavc_context *ctx,
|
|
|
|
AVStream *stream, enum mp_csp_levels lev)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, NULL);
|
|
|
|
|
|
|
|
if (ctx->header_written) {
|
|
|
|
if (stream->codec->color_range != mp_csp_levels_to_avcol_range(lev))
|
|
|
|
mp_msg(MSGT_ENCODE, MSGL_WARN,
|
|
|
|
"encode-lavc: can not change color space during encoding\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->codec->color_range = mp_csp_levels_to_avcol_range(lev);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum mp_csp encode_lavc_get_csp(struct encode_lavc_context *ctx,
|
|
|
|
AVStream *stream)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
|
|
|
|
return avcol_spc_to_mp_csp(stream->codec->colorspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum mp_csp_levels encode_lavc_get_csp_levels(struct encode_lavc_context *ctx,
|
|
|
|
AVStream *stream)
|
|
|
|
{
|
|
|
|
CHECK_FAIL(ctx, 0);
|
|
|
|
|
|
|
|
return avcol_range_to_mp_csp_levels(stream->codec->color_range);
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: ts=4 sw=4 et
|