2015-05-28 23:10:45 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
2016-05-12 20:20:49 -07:00
|
|
|
#include <windows.h>
|
2015-05-28 23:10:45 -07:00
|
|
|
#define inline __inline
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "ffmpeg-mux.h"
|
|
|
|
|
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
|
2017-10-29 15:50:01 -07:00
|
|
|
#if LIBAVCODEC_VERSION_MAJOR >= 58
|
|
|
|
#define CODEC_FLAG_GLOBAL_H AV_CODEC_FLAG_GLOBAL_HEADER
|
|
|
|
#else
|
|
|
|
#define CODEC_FLAG_GLOBAL_H CODEC_FLAG_GLOBAL_HEADER
|
|
|
|
#endif
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
struct resize_buf {
|
|
|
|
uint8_t *buf;
|
2019-06-22 22:13:45 -07:00
|
|
|
size_t size;
|
|
|
|
size_t capacity;
|
2015-05-28 23:10:45 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline void resize_buf_resize(struct resize_buf *rb, size_t size)
|
|
|
|
{
|
|
|
|
if (!rb->buf) {
|
|
|
|
rb->buf = malloc(size);
|
|
|
|
rb->size = size;
|
|
|
|
rb->capacity = size;
|
|
|
|
} else {
|
|
|
|
if (rb->capacity < size) {
|
|
|
|
size_t capx2 = rb->capacity * 2;
|
|
|
|
size_t new_cap = capx2 > size ? capx2 : size;
|
|
|
|
rb->buf = realloc(rb->buf, new_cap);
|
|
|
|
rb->capacity = new_cap;
|
|
|
|
}
|
|
|
|
|
|
|
|
rb->size = size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void resize_buf_free(struct resize_buf *rb)
|
|
|
|
{
|
|
|
|
free(rb->buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
struct main_params {
|
|
|
|
char *file;
|
|
|
|
int has_video;
|
|
|
|
int tracks;
|
|
|
|
char *vcodec;
|
|
|
|
int vbitrate;
|
|
|
|
int gop;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int fps_num;
|
|
|
|
int fps_den;
|
2020-01-25 10:29:38 -08:00
|
|
|
int color_primaries;
|
|
|
|
int color_trc;
|
|
|
|
int colorspace;
|
|
|
|
int color_range;
|
2015-05-28 23:10:45 -07:00
|
|
|
char *acodec;
|
2015-11-23 06:28:25 -08:00
|
|
|
char *muxer_settings;
|
2015-05-28 23:10:45 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct audio_params {
|
|
|
|
char *name;
|
|
|
|
int abitrate;
|
|
|
|
int sample_rate;
|
|
|
|
int channels;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct header {
|
|
|
|
uint8_t *data;
|
|
|
|
int size;
|
|
|
|
};
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
struct audio_info {
|
|
|
|
AVStream *stream;
|
|
|
|
AVCodecContext *ctx;
|
|
|
|
};
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
struct ffmpeg_mux {
|
2019-06-22 22:13:45 -07:00
|
|
|
AVFormatContext *output;
|
|
|
|
AVStream *video_stream;
|
2020-07-18 18:47:58 -07:00
|
|
|
AVCodecContext *video_ctx;
|
|
|
|
struct audio_info *audio_infos;
|
2019-06-22 22:13:45 -07:00
|
|
|
struct main_params params;
|
|
|
|
struct audio_params *audio;
|
|
|
|
struct header video_header;
|
|
|
|
struct header *audio_header;
|
|
|
|
int num_audio_streams;
|
|
|
|
bool initialized;
|
2015-05-28 23:10:45 -07:00
|
|
|
char error[4096];
|
|
|
|
};
|
|
|
|
|
|
|
|
static void header_free(struct header *header)
|
|
|
|
{
|
|
|
|
free(header->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_avformat(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
|
|
|
if (ffm->output) {
|
2020-07-18 18:47:58 -07:00
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
|
|
|
|
avcodec_free_context(&ffm->video_ctx);
|
|
|
|
#endif
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
if ((ffm->output->oformat->flags & AVFMT_NOFILE) == 0)
|
|
|
|
avio_close(ffm->output->pb);
|
|
|
|
|
|
|
|
avformat_free_context(ffm->output);
|
|
|
|
ffm->output = NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
if (ffm->audio_infos) {
|
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
|
|
|
|
for (int i = 0; i < ffm->num_audio_streams; ++i)
|
|
|
|
avcodec_free_context(&ffm->audio_infos[i].ctx);
|
|
|
|
#endif
|
|
|
|
free(ffm->audio_infos);
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ffm->video_stream = NULL;
|
2020-07-18 18:47:58 -07:00
|
|
|
ffm->audio_infos = NULL;
|
2015-05-28 23:10:45 -07:00
|
|
|
ffm->num_audio_streams = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ffmpeg_mux_free(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
|
|
|
if (ffm->initialized) {
|
|
|
|
av_write_trailer(ffm->output);
|
|
|
|
}
|
|
|
|
|
|
|
|
free_avformat(ffm);
|
|
|
|
|
|
|
|
header_free(&ffm->video_header);
|
|
|
|
|
|
|
|
if (ffm->audio_header) {
|
|
|
|
for (int i = 0; i < ffm->params.tracks; i++) {
|
|
|
|
header_free(&ffm->audio_header[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(ffm->audio_header);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ffm->audio) {
|
|
|
|
free(ffm->audio);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(ffm, 0, sizeof(*ffm));
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_opt_str(int *p_argc, char ***p_argv, char **str,
|
2019-06-22 22:13:45 -07:00
|
|
|
const char *opt)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
int argc = *p_argc;
|
|
|
|
char **argv = *p_argv;
|
|
|
|
|
|
|
|
if (!argc) {
|
|
|
|
printf("Missing expected option: '%s'\n", opt);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*p_argc)--;
|
|
|
|
(*p_argv)++;
|
|
|
|
*str = argv[0];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_opt_int(int *p_argc, char ***p_argv, int *i, const char *opt)
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
if (!get_opt_str(p_argc, p_argv, &str, opt)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*i = atoi(str);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_audio_params(struct audio_params *audio, int *argc,
|
2019-06-22 22:13:45 -07:00
|
|
|
char ***argv)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
if (!get_opt_str(argc, argv, &audio->name, "audio track name"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, &audio->abitrate, "audio bitrate"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, &audio->sample_rate, "audio sample rate"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, &audio->channels, "audio channels"))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool init_params(int *argc, char ***argv, struct main_params *params,
|
2019-06-22 22:13:45 -07:00
|
|
|
struct audio_params **p_audio)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
struct audio_params *audio = NULL;
|
|
|
|
|
|
|
|
if (!get_opt_str(argc, argv, ¶ms->file, "file name"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->has_video, "video track count"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->tracks, "audio track count"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (params->has_video > 1 || params->has_video < 0) {
|
|
|
|
puts("Invalid number of video tracks\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (params->tracks < 0) {
|
|
|
|
puts("Invalid number of audio tracks\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (params->has_video == 0 && params->tracks == 0) {
|
|
|
|
puts("Must have at least 1 audio track or 1 video track\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->has_video) {
|
|
|
|
if (!get_opt_str(argc, argv, ¶ms->vcodec, "video codec"))
|
|
|
|
return false;
|
2019-06-22 22:13:45 -07:00
|
|
|
if (!get_opt_int(argc, argv, ¶ms->vbitrate,
|
|
|
|
"video bitrate"))
|
2015-05-28 23:10:45 -07:00
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->width, "video width"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->height, "video height"))
|
|
|
|
return false;
|
2020-01-25 10:29:38 -08:00
|
|
|
if (!get_opt_int(argc, argv, ¶ms->color_primaries,
|
|
|
|
"video color primaries"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->color_trc,
|
|
|
|
"video color trc"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->colorspace,
|
|
|
|
"video colorspace"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->color_range,
|
|
|
|
"video color range"))
|
|
|
|
return false;
|
2015-05-28 23:10:45 -07:00
|
|
|
if (!get_opt_int(argc, argv, ¶ms->fps_num, "video fps num"))
|
|
|
|
return false;
|
|
|
|
if (!get_opt_int(argc, argv, ¶ms->fps_den, "video fps den"))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->tracks) {
|
|
|
|
if (!get_opt_str(argc, argv, ¶ms->acodec, "audio codec"))
|
|
|
|
return false;
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
audio = calloc(params->tracks, sizeof(*audio));
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
for (int i = 0; i < params->tracks; i++) {
|
|
|
|
if (!get_audio_params(&audio[i], argc, argv)) {
|
|
|
|
free(audio);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*p_audio = audio;
|
2015-11-23 06:28:25 -08:00
|
|
|
|
|
|
|
get_opt_str(argc, argv, ¶ms->muxer_settings, "muxer settings");
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool new_stream(struct ffmpeg_mux *ffm, AVStream **stream,
|
2020-07-18 18:47:58 -07:00
|
|
|
const char *name, AVCodec **codec)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
const AVCodecDescriptor *desc = avcodec_descriptor_get_by_name(name);
|
|
|
|
|
|
|
|
if (!desc) {
|
2019-03-30 07:45:51 -07:00
|
|
|
fprintf(stderr, "Couldn't find encoder '%s'\n", name);
|
2015-05-28 23:10:45 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
*codec = avcodec_find_encoder(desc->id);
|
|
|
|
if (!*codec) {
|
2020-09-11 22:33:06 -07:00
|
|
|
fprintf(stderr, "Couldn't create encoder\n");
|
2015-05-28 23:10:45 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
*stream = avformat_new_stream(ffm->output, *codec);
|
2015-05-28 23:10:45 -07:00
|
|
|
if (!*stream) {
|
2019-06-22 22:13:45 -07:00
|
|
|
fprintf(stderr, "Couldn't create stream for encoder '%s'\n",
|
|
|
|
name);
|
2015-05-28 23:10:45 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
(*stream)->id = ffm->output->nb_streams - 1;
|
2015-05-28 23:10:45 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void create_video_stream(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
2020-07-18 18:47:58 -07:00
|
|
|
AVCodec *codec;
|
2015-05-28 23:10:45 -07:00
|
|
|
AVCodecContext *context;
|
|
|
|
void *extradata = NULL;
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
if (!new_stream(ffm, &ffm->video_stream, ffm->params.vcodec, &codec))
|
2015-05-28 23:10:45 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (ffm->video_header.size) {
|
|
|
|
extradata = av_memdup(ffm->video_header.data,
|
2019-06-22 22:13:45 -07:00
|
|
|
ffm->video_header.size);
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
|
|
|
|
context = avcodec_alloc_context3(codec);
|
|
|
|
#else
|
2019-06-22 22:13:45 -07:00
|
|
|
context = ffm->video_stream->codec;
|
2020-07-18 18:47:58 -07:00
|
|
|
#endif
|
|
|
|
context->bit_rate = (int64_t)ffm->params.vbitrate * 1000;
|
2019-06-22 22:13:45 -07:00
|
|
|
context->width = ffm->params.width;
|
|
|
|
context->height = ffm->params.height;
|
|
|
|
context->coded_width = ffm->params.width;
|
|
|
|
context->coded_height = ffm->params.height;
|
2020-01-25 10:29:38 -08:00
|
|
|
context->color_primaries = ffm->params.color_primaries;
|
|
|
|
context->color_trc = ffm->params.color_trc;
|
|
|
|
context->colorspace = ffm->params.colorspace;
|
|
|
|
context->color_range = ffm->params.color_range;
|
2019-06-22 22:13:45 -07:00
|
|
|
context->extradata = extradata;
|
2015-05-28 23:10:45 -07:00
|
|
|
context->extradata_size = ffm->video_header.size;
|
|
|
|
context->time_base =
|
|
|
|
(AVRational){ffm->params.fps_den, ffm->params.fps_num};
|
|
|
|
|
|
|
|
ffm->video_stream->time_base = context->time_base;
|
2018-05-26 21:45:05 -07:00
|
|
|
ffm->video_stream->avg_frame_rate = av_inv_q(context->time_base);
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
if (ffm->output->oformat->flags & AVFMT_GLOBALHEADER)
|
2017-10-29 15:50:01 -07:00
|
|
|
context->flags |= CODEC_FLAG_GLOBAL_H;
|
2020-07-18 18:47:58 -07:00
|
|
|
|
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
|
|
|
|
avcodec_parameters_from_context(ffm->video_stream->codecpar, context);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ffm->video_ctx = context;
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void create_audio_stream(struct ffmpeg_mux *ffm, int idx)
|
|
|
|
{
|
2020-07-18 18:47:58 -07:00
|
|
|
AVCodec *codec;
|
2015-05-28 23:10:45 -07:00
|
|
|
AVCodecContext *context;
|
|
|
|
AVStream *stream;
|
|
|
|
void *extradata = NULL;
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
if (!new_stream(ffm, &stream, ffm->params.acodec, &codec))
|
2015-05-28 23:10:45 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
av_dict_set(&stream->metadata, "title", ffm->audio[idx].name, 0);
|
|
|
|
|
|
|
|
stream->time_base = (AVRational){1, ffm->audio[idx].sample_rate};
|
|
|
|
|
|
|
|
if (ffm->audio_header[idx].size) {
|
|
|
|
extradata = av_memdup(ffm->audio_header[idx].data,
|
2019-06-22 22:13:45 -07:00
|
|
|
ffm->audio_header[idx].size);
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
|
|
|
|
context = avcodec_alloc_context3(codec);
|
|
|
|
#else
|
2019-06-22 22:13:45 -07:00
|
|
|
context = stream->codec;
|
2020-07-18 18:47:58 -07:00
|
|
|
#endif
|
|
|
|
context->bit_rate = (int64_t)ffm->audio[idx].abitrate * 1000;
|
2019-06-22 22:13:45 -07:00
|
|
|
context->channels = ffm->audio[idx].channels;
|
|
|
|
context->sample_rate = ffm->audio[idx].sample_rate;
|
|
|
|
context->sample_fmt = AV_SAMPLE_FMT_S16;
|
|
|
|
context->time_base = stream->time_base;
|
|
|
|
context->extradata = extradata;
|
2015-05-28 23:10:45 -07:00
|
|
|
context->extradata_size = ffm->audio_header[idx].size;
|
|
|
|
context->channel_layout =
|
2019-06-22 22:13:45 -07:00
|
|
|
av_get_default_channel_layout(context->channels);
|
libobs: Add surround sound audio support
(This commit also modifies the following modules: UI,
deps/media-playback, coreaudio-encoder, decklink, linux-alsa,
linux-pulseaudio, mac-capture, obs-ffmpeg, obs-filters, obs-libfdk,
obs-outputs, win-dshow, and win-wasapi)
Adds surround sound audio support to the core, core plugins, and user
interface.
Compatible streaming services: Twitch, FB 360 live
Compatible protocols: rtmp / mpeg-ts tcp udp
Compatible file formats: mkv mp4 ts (others untested)
Compatible codecs: ffmpeg aac, fdk_aac, CoreAudio aac,
opus, vorbis, pcm (others untested).
Tested streaming servers: wowza, nginx
HLS, mpeg-dash : surround passthrough
Html5 players tested with live surround:
videojs, mediaelement, viblast (hls+dash), hls.js
Decklink: on win32, swap channels order for 5.1 7.1
(due to different channel mapping on wav, mpeg, ffmpeg)
Audio filters: surround working.
Monitoring: surround working (win macOs linux (pulse-audio)).
VST: stereo plugins keep in general only the first two channels.
surround plugins should work (e.g. mcfx does).
OS: win, macOs, linux (alsa, pulse-audio).
Misc: larger audio bitrates unlocked to accommodate more channels
NB: mf-aac only supports mono and stereo + 5.1 on win 10
(not implemented due to lack of usefulness)
Closes jp9000/obs-studio#968
2017-05-26 17:15:54 -07:00
|
|
|
//AVlib default channel layout for 4 channels is 4.0 ; fix for quad
|
|
|
|
if (context->channels == 4)
|
|
|
|
context->channel_layout = av_get_channel_layout("quad");
|
|
|
|
//AVlib default channel layout for 5 channels is 5.0 ; fix for 4.1
|
|
|
|
if (context->channels == 5)
|
|
|
|
context->channel_layout = av_get_channel_layout("4.1");
|
2015-05-28 23:10:45 -07:00
|
|
|
if (ffm->output->oformat->flags & AVFMT_GLOBALHEADER)
|
2017-10-29 15:50:01 -07:00
|
|
|
context->flags |= CODEC_FLAG_GLOBAL_H;
|
2015-05-28 23:10:45 -07:00
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
|
|
|
|
avcodec_parameters_from_context(stream->codecpar, context);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ffm->audio_infos[ffm->num_audio_streams].stream = stream;
|
|
|
|
ffm->audio_infos[ffm->num_audio_streams].ctx = context;
|
2015-05-28 23:10:45 -07:00
|
|
|
ffm->num_audio_streams++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool init_streams(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
2017-02-10 03:53:49 -08:00
|
|
|
if (ffm->params.has_video)
|
|
|
|
create_video_stream(ffm);
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
if (ffm->params.tracks) {
|
2020-07-18 18:47:58 -07:00
|
|
|
ffm->audio_infos =
|
|
|
|
calloc(ffm->params.tracks, sizeof(*ffm->audio_infos));
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
for (int i = 0; i < ffm->params.tracks; i++)
|
|
|
|
create_audio_stream(ffm, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ffm->video_stream && !ffm->num_audio_streams)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_header(struct header *header, uint8_t *data, size_t size)
|
|
|
|
{
|
|
|
|
header->size = (int)size;
|
|
|
|
header->data = malloc(size);
|
|
|
|
memcpy(header->data, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ffmpeg_mux_header(struct ffmpeg_mux *ffm, uint8_t *data,
|
2019-06-22 22:13:45 -07:00
|
|
|
struct ffm_packet_info *info)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
if (info->type == FFM_PACKET_VIDEO) {
|
|
|
|
set_header(&ffm->video_header, data, (size_t)info->size);
|
|
|
|
} else {
|
|
|
|
set_header(&ffm->audio_header[info->index], data,
|
2019-06-22 22:13:45 -07:00
|
|
|
(size_t)info->size);
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t safe_read(void *vdata, size_t size)
|
|
|
|
{
|
|
|
|
uint8_t *data = vdata;
|
2019-06-22 22:13:45 -07:00
|
|
|
size_t total = size;
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
size_t in_size = fread(data, 1, size, stdin);
|
|
|
|
if (in_size == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
size -= in_size;
|
|
|
|
data += in_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool ffmpeg_mux_get_header(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
|
|
|
struct ffm_packet_info info = {0};
|
|
|
|
|
|
|
|
bool success = safe_read(&info, sizeof(info)) == sizeof(info);
|
|
|
|
if (success) {
|
|
|
|
uint8_t *data = malloc(info.size);
|
|
|
|
|
|
|
|
if (safe_read(data, info.size) == info.size) {
|
|
|
|
ffmpeg_mux_header(ffm, data, &info);
|
|
|
|
} else {
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ffmpeg_mux_get_extra_data(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
|
|
|
if (ffm->params.has_video) {
|
|
|
|
if (!ffmpeg_mux_get_header(ffm)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < ffm->params.tracks; i++) {
|
|
|
|
if (!ffmpeg_mux_get_header(ffm)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-11-23 06:28:25 -08:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable : 4996)
|
|
|
|
#endif
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
static inline int open_output_file(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
|
|
|
AVOutputFormat *format = ffm->output->oformat;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if ((format->flags & AVFMT_NOFILE) == 0) {
|
|
|
|
ret = avio_open(&ffm->output->pb, ffm->params.file,
|
|
|
|
AVIO_FLAG_WRITE);
|
|
|
|
if (ret < 0) {
|
2020-09-11 22:33:06 -07:00
|
|
|
fprintf(stderr, "Couldn't open '%s', %s\n",
|
2019-06-22 22:13:45 -07:00
|
|
|
ffm->params.file, av_err2str(ret));
|
2015-05-28 23:10:45 -07:00
|
|
|
return FFM_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-23 06:28:25 -08:00
|
|
|
AVDictionary *dict = NULL;
|
2019-06-22 22:13:45 -07:00
|
|
|
if ((ret = av_dict_parse_string(&dict, ffm->params.muxer_settings, "=",
|
|
|
|
" ", 0))) {
|
2020-09-11 22:33:06 -07:00
|
|
|
fprintf(stderr, "Failed to parse muxer settings: %s\n%s\n",
|
2019-06-22 22:13:45 -07:00
|
|
|
av_err2str(ret), ffm->params.muxer_settings);
|
2015-11-23 06:28:25 -08:00
|
|
|
|
|
|
|
av_dict_free(&dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (av_dict_count(dict) > 0) {
|
|
|
|
printf("Using muxer settings:");
|
|
|
|
|
|
|
|
AVDictionaryEntry *entry = NULL;
|
|
|
|
while ((entry = av_dict_get(dict, "", entry,
|
2019-06-22 22:13:45 -07:00
|
|
|
AV_DICT_IGNORE_SUFFIX)))
|
2015-11-23 06:28:25 -08:00
|
|
|
printf("\n\t%s=%s", entry->key, entry->value);
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = avformat_write_header(ffm->output, &dict);
|
2015-05-28 23:10:45 -07:00
|
|
|
if (ret < 0) {
|
2020-09-11 22:33:06 -07:00
|
|
|
fprintf(stderr, "Error opening '%s': %s\n", ffm->params.file,
|
2019-06-22 22:13:45 -07:00
|
|
|
av_err2str(ret));
|
2015-11-23 06:28:25 -08:00
|
|
|
|
|
|
|
av_dict_free(&dict);
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
return ret == -22 ? FFM_UNSUPPORTED : FFM_ERROR;
|
|
|
|
}
|
|
|
|
|
2015-11-23 06:28:25 -08:00
|
|
|
av_dict_free(&dict);
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
return FFM_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2020-03-24 19:26:28 -07:00
|
|
|
#define SRT_PROTO "srt"
|
|
|
|
#define UDP_PROTO "udp"
|
|
|
|
#define TCP_PROTO "tcp"
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
static int ffmpeg_mux_init_context(struct ffmpeg_mux *ffm)
|
|
|
|
{
|
|
|
|
AVOutputFormat *output_format;
|
|
|
|
int ret;
|
2020-03-24 19:26:28 -07:00
|
|
|
bool isNetwork = false;
|
|
|
|
if (strncmp(ffm->params.file, SRT_PROTO, sizeof(SRT_PROTO) - 1) == 0 ||
|
|
|
|
strncmp(ffm->params.file, UDP_PROTO, sizeof(UDP_PROTO) - 1) == 0 ||
|
|
|
|
strncmp(ffm->params.file, TCP_PROTO, sizeof(TCP_PROTO) - 1) == 0)
|
|
|
|
isNetwork = true;
|
|
|
|
|
|
|
|
if (isNetwork) {
|
|
|
|
avformat_network_init();
|
|
|
|
output_format = av_guess_format("mpegts", NULL, "video/M2PT");
|
|
|
|
} else {
|
|
|
|
output_format = av_guess_format(NULL, ffm->params.file, NULL);
|
|
|
|
}
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
if (output_format == NULL) {
|
2019-03-30 07:45:51 -07:00
|
|
|
fprintf(stderr, "Couldn't find an appropriate muxer for '%s'\n",
|
2019-06-22 22:13:45 -07:00
|
|
|
ffm->params.file);
|
2015-05-28 23:10:45 -07:00
|
|
|
return FFM_ERROR;
|
|
|
|
}
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
ret = avformat_alloc_output_context2(&ffm->output, output_format, NULL,
|
2020-07-18 18:47:58 -07:00
|
|
|
ffm->params.file);
|
2015-05-28 23:10:45 -07:00
|
|
|
if (ret < 0) {
|
2019-03-30 07:45:51 -07:00
|
|
|
fprintf(stderr, "Couldn't initialize output context: %s\n",
|
2019-06-22 22:13:45 -07:00
|
|
|
av_err2str(ret));
|
2015-05-28 23:10:45 -07:00
|
|
|
return FFM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ffm->output->oformat->video_codec = AV_CODEC_ID_NONE;
|
|
|
|
ffm->output->oformat->audio_codec = AV_CODEC_ID_NONE;
|
|
|
|
|
|
|
|
if (!init_streams(ffm)) {
|
|
|
|
free_avformat(ffm);
|
|
|
|
return FFM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = open_output_file(ffm);
|
|
|
|
if (ret != FFM_SUCCESS) {
|
|
|
|
free_avformat(ffm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FFM_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ffmpeg_mux_init_internal(struct ffmpeg_mux *ffm, int argc,
|
2019-06-22 22:13:45 -07:00
|
|
|
char *argv[])
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
if (!init_params(&argc, &argv, &ffm->params, &ffm->audio))
|
|
|
|
return FFM_ERROR;
|
|
|
|
|
|
|
|
if (ffm->params.tracks) {
|
|
|
|
ffm->audio_header =
|
2020-07-18 18:47:58 -07:00
|
|
|
calloc(ffm->params.tracks, sizeof(*ffm->audio_header));
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
2019-07-28 18:31:43 -07:00
|
|
|
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 9, 100)
|
2015-05-28 23:10:45 -07:00
|
|
|
av_register_all();
|
2019-07-28 18:31:43 -07:00
|
|
|
#endif
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
if (!ffmpeg_mux_get_extra_data(ffm))
|
|
|
|
return FFM_ERROR;
|
|
|
|
|
|
|
|
/* ffmpeg does not have a way of telling what's supported
|
|
|
|
* for a given output format, so we try each possibility */
|
|
|
|
return ffmpeg_mux_init_context(ffm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ffmpeg_mux_init(struct ffmpeg_mux *ffm, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ret = ffmpeg_mux_init_internal(ffm, argc, argv);
|
|
|
|
if (ret != FFM_SUCCESS) {
|
|
|
|
ffmpeg_mux_free(ffm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ffm->initialized = true;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int get_index(struct ffmpeg_mux *ffm,
|
2019-06-22 22:13:45 -07:00
|
|
|
struct ffm_packet_info *info)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
if (info->type == FFM_PACKET_VIDEO) {
|
|
|
|
if (ffm->video_stream) {
|
|
|
|
return ffm->video_stream->id;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ((int)info->index < ffm->num_audio_streams) {
|
2020-07-18 18:47:58 -07:00
|
|
|
return ffm->audio_infos[info->index].stream->id;
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
static AVCodecContext *get_codec_context(struct ffmpeg_mux *ffm,
|
|
|
|
struct ffm_packet_info *info)
|
|
|
|
{
|
|
|
|
if (info->type == FFM_PACKET_VIDEO) {
|
|
|
|
if (ffm->video_stream) {
|
|
|
|
return ffm->video_ctx;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ((int)info->index < ffm->num_audio_streams) {
|
|
|
|
return ffm->audio_infos[info->index].ctx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
static inline AVStream *get_stream(struct ffmpeg_mux *ffm, int idx)
|
|
|
|
{
|
|
|
|
return ffm->output->streams[idx];
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
static inline int64_t rescale_ts(struct ffmpeg_mux *ffm,
|
|
|
|
AVRational codec_time_base, int64_t val,
|
|
|
|
int idx)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
AVStream *stream = get_stream(ffm, idx);
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
return av_rescale_q_rnd(val / codec_time_base.num, codec_time_base,
|
|
|
|
stream->time_base,
|
2019-06-22 22:13:45 -07:00
|
|
|
AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX);
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ffmpeg_mux_packet(struct ffmpeg_mux *ffm, uint8_t *buf,
|
2019-06-22 22:13:45 -07:00
|
|
|
struct ffm_packet_info *info)
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
int idx = get_index(ffm, info);
|
|
|
|
AVPacket packet = {0};
|
|
|
|
|
|
|
|
/* The muxer might not support video/audio, or multiple audio tracks */
|
|
|
|
if (idx == -1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:47:58 -07:00
|
|
|
const AVRational codec_time_base =
|
|
|
|
get_codec_context(ffm, info)->time_base;
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
av_init_packet(&packet);
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
packet.data = buf;
|
|
|
|
packet.size = (int)info->size;
|
|
|
|
packet.stream_index = idx;
|
2020-07-18 18:47:58 -07:00
|
|
|
packet.pts = rescale_ts(ffm, codec_time_base, info->pts, idx);
|
|
|
|
packet.dts = rescale_ts(ffm, codec_time_base, info->dts, idx);
|
2015-05-28 23:10:45 -07:00
|
|
|
|
|
|
|
if (info->keyframe)
|
|
|
|
packet.flags = AV_PKT_FLAG_KEY;
|
|
|
|
|
2020-09-11 22:33:06 -07:00
|
|
|
int ret = av_interleaved_write_frame(ffm->output, &packet);
|
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "av_interleaved_write_frame failed: %s\n",
|
|
|
|
av_err2str(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret >= 0;
|
2015-05-28 23:10:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2016-05-12 20:20:49 -07:00
|
|
|
#ifdef _WIN32
|
|
|
|
int wmain(int argc, wchar_t *argv_w[])
|
|
|
|
#else
|
2015-05-28 23:10:45 -07:00
|
|
|
int main(int argc, char *argv[])
|
2016-05-12 20:20:49 -07:00
|
|
|
#endif
|
2015-05-28 23:10:45 -07:00
|
|
|
{
|
|
|
|
struct ffm_packet_info info = {0};
|
|
|
|
struct ffmpeg_mux ffm = {0};
|
|
|
|
struct resize_buf rb = {0};
|
|
|
|
bool fail = false;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-05-12 20:20:49 -07:00
|
|
|
char **argv;
|
|
|
|
|
2017-06-21 08:40:35 -07:00
|
|
|
SetErrorMode(SEM_FAILCRITICALERRORS);
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
argv = malloc(argc * sizeof(char *));
|
2016-05-12 20:20:49 -07:00
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
size_t len = wcslen(argv_w[i]);
|
|
|
|
int size;
|
|
|
|
|
2016-05-12 23:01:45 -07:00
|
|
|
size = WideCharToMultiByte(CP_UTF8, 0, argv_w[i], (int)len,
|
2019-06-22 22:13:45 -07:00
|
|
|
NULL, 0, NULL, NULL);
|
2016-05-12 20:20:49 -07:00
|
|
|
argv[i] = malloc(size + 1);
|
2016-05-12 23:01:45 -07:00
|
|
|
WideCharToMultiByte(CP_UTF8, 0, argv_w[i], (int)len, argv[i],
|
2019-06-22 22:13:45 -07:00
|
|
|
size + 1, NULL, NULL);
|
2016-05-12 20:20:49 -07:00
|
|
|
argv[i][size] = 0;
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:10:45 -07:00
|
|
|
_setmode(_fileno(stdin), O_BINARY);
|
|
|
|
#endif
|
|
|
|
setvbuf(stderr, NULL, _IONBF, 0);
|
|
|
|
|
|
|
|
ret = ffmpeg_mux_init(&ffm, argc, argv);
|
|
|
|
if (ret != FFM_SUCCESS) {
|
2019-03-30 07:45:51 -07:00
|
|
|
fprintf(stderr, "Couldn't initialize muxer\n");
|
2015-05-28 23:10:45 -07:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!fail && safe_read(&info, sizeof(info)) == sizeof(info)) {
|
|
|
|
resize_buf_resize(&rb, info.size);
|
|
|
|
|
|
|
|
if (safe_read(rb.buf, info.size) == info.size) {
|
2020-09-11 22:33:06 -07:00
|
|
|
fail = !ffmpeg_mux_packet(&ffm, rb.buf, &info);
|
2015-05-28 23:10:45 -07:00
|
|
|
} else {
|
|
|
|
fail = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ffmpeg_mux_free(&ffm);
|
|
|
|
resize_buf_free(&rb);
|
2016-05-12 20:20:49 -07:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
for (int i = 0; i < argc; i++)
|
|
|
|
free(argv[i]);
|
|
|
|
free(argv);
|
|
|
|
#endif
|
2015-05-28 23:10:45 -07:00
|
|
|
return 0;
|
|
|
|
}
|