ffmpeg-mux.c 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292
  1. /*
  2. * Copyright (c) 2015 Hugh Bailey <[email protected]>
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifdef _WIN32
  17. #include <io.h>
  18. #include <fcntl.h>
  19. #include <windows.h>
  20. #define inline __inline
  21. #endif
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include "ffmpeg-mux.h"
  25. #include <util/threading.h>
  26. #include <util/platform.h>
  27. #include <util/circlebuf.h>
  28. #include <util/dstr.h>
  29. #include <libavcodec/avcodec.h>
  30. #include <libavformat/avformat.h>
  31. #include <libavutil/channel_layout.h>
  32. #include <libavutil/mastering_display_metadata.h>
  33. #define ANSI_COLOR_RED "\x1b[0;91m"
  34. #define ANSI_COLOR_MAGENTA "\x1b[0;95m"
  35. #define ANSI_COLOR_RESET "\x1b[0m"
  36. #if LIBAVCODEC_VERSION_MAJOR >= 58
  37. #define CODEC_FLAG_GLOBAL_H AV_CODEC_FLAG_GLOBAL_HEADER
  38. #else
  39. #define CODEC_FLAG_GLOBAL_H CODEC_FLAG_GLOBAL_HEADER
  40. #endif
  41. #define AVIO_BUFFER_SIZE 65536
  42. /* ------------------------------------------------------------------------- */
  43. static char *global_stream_key = "";
  44. struct resize_buf {
  45. uint8_t *buf;
  46. size_t size;
  47. size_t capacity;
  48. };
  49. static inline void resize_buf_resize(struct resize_buf *rb, size_t size)
  50. {
  51. if (!rb->buf) {
  52. rb->buf = malloc(size);
  53. rb->size = size;
  54. rb->capacity = size;
  55. } else {
  56. if (rb->capacity < size) {
  57. size_t capx2 = rb->capacity * 2;
  58. size_t new_cap = capx2 > size ? capx2 : size;
  59. rb->buf = realloc(rb->buf, new_cap);
  60. rb->capacity = new_cap;
  61. }
  62. rb->size = size;
  63. }
  64. }
  65. static inline void resize_buf_free(struct resize_buf *rb)
  66. {
  67. free(rb->buf);
  68. }
  69. /* ------------------------------------------------------------------------- */
  70. struct main_params {
  71. char *file;
  72. /* printable_file is file with any stream key information removed */
  73. struct dstr printable_file;
  74. int has_video;
  75. int tracks;
  76. char *vcodec;
  77. int vbitrate;
  78. int gop;
  79. int width;
  80. int height;
  81. int fps_num;
  82. int fps_den;
  83. int color_primaries;
  84. int color_trc;
  85. int colorspace;
  86. int color_range;
  87. int chroma_sample_location;
  88. int max_luminance;
  89. char *acodec;
  90. char *muxer_settings;
  91. int codec_tag;
  92. };
  93. struct audio_params {
  94. char *name;
  95. int abitrate;
  96. int sample_rate;
  97. int frame_size;
  98. int channels;
  99. };
  100. struct header {
  101. uint8_t *data;
  102. int size;
  103. };
  104. struct audio_info {
  105. AVStream *stream;
  106. AVCodecContext *ctx;
  107. };
  108. struct io_header {
  109. uint64_t seek_offset;
  110. size_t data_length;
  111. };
  112. struct io_buffer {
  113. bool active;
  114. bool shutdown_requested;
  115. bool output_error;
  116. os_event_t *buffer_space_available_event;
  117. os_event_t *new_data_available_event;
  118. pthread_t io_thread;
  119. pthread_mutex_t data_mutex;
  120. FILE *output_file;
  121. struct circlebuf data;
  122. uint64_t next_pos;
  123. };
  124. struct ffmpeg_mux {
  125. AVFormatContext *output;
  126. AVStream *video_stream;
  127. AVCodecContext *video_ctx;
  128. AVPacket *packet;
  129. struct audio_info *audio_infos;
  130. struct main_params params;
  131. struct audio_params *audio;
  132. struct header video_header;
  133. struct header *audio_header;
  134. int num_audio_streams;
  135. bool initialized;
  136. struct io_buffer io;
  137. };
  138. static void header_free(struct header *header)
  139. {
  140. free(header->data);
  141. }
  142. static void free_avformat(struct ffmpeg_mux *ffm)
  143. {
  144. if (ffm->output) {
  145. avcodec_free_context(&ffm->video_ctx);
  146. if ((ffm->output->oformat->flags & AVFMT_NOFILE) == 0)
  147. avio_close(ffm->output->pb);
  148. avformat_free_context(ffm->output);
  149. ffm->output = NULL;
  150. }
  151. if (ffm->audio_infos) {
  152. for (int i = 0; i < ffm->num_audio_streams; ++i)
  153. avcodec_free_context(&ffm->audio_infos[i].ctx);
  154. free(ffm->audio_infos);
  155. }
  156. ffm->video_stream = NULL;
  157. ffm->audio_infos = NULL;
  158. ffm->num_audio_streams = 0;
  159. }
  160. static void ffmpeg_mux_free(struct ffmpeg_mux *ffm)
  161. {
  162. if (ffm->initialized) {
  163. av_write_trailer(ffm->output);
  164. }
  165. // If we're writing to a file with the circlebuf, shut it
  166. // down gracefully
  167. if (ffm->io.active) {
  168. os_atomic_set_bool(&ffm->io.shutdown_requested, true);
  169. // Wakes up the I/O thread and waits for it to finish
  170. pthread_mutex_lock(&ffm->io.data_mutex);
  171. os_event_signal(ffm->io.new_data_available_event);
  172. pthread_mutex_unlock(&ffm->io.data_mutex);
  173. pthread_join(ffm->io.io_thread, NULL);
  174. // Cleanup everything else
  175. av_free(ffm->output->pb->buffer);
  176. avio_context_free(&ffm->output->pb);
  177. os_event_destroy(ffm->io.new_data_available_event);
  178. os_event_destroy(ffm->io.buffer_space_available_event);
  179. pthread_mutex_destroy(&ffm->io.data_mutex);
  180. circlebuf_free(&ffm->io.data);
  181. }
  182. free_avformat(ffm);
  183. header_free(&ffm->video_header);
  184. if (ffm->audio_header) {
  185. for (int i = 0; i < ffm->params.tracks; i++) {
  186. header_free(&ffm->audio_header[i]);
  187. }
  188. free(ffm->audio_header);
  189. }
  190. if (ffm->audio) {
  191. free(ffm->audio);
  192. }
  193. dstr_free(&ffm->params.printable_file);
  194. av_packet_free(&ffm->packet);
  195. memset(ffm, 0, sizeof(*ffm));
  196. }
  197. static bool get_opt_str(int *p_argc, char ***p_argv, char **str,
  198. const char *opt)
  199. {
  200. int argc = *p_argc;
  201. char **argv = *p_argv;
  202. if (!argc) {
  203. printf("Missing expected option: '%s'\n", opt);
  204. return false;
  205. }
  206. (*p_argc)--;
  207. (*p_argv)++;
  208. *str = argv[0];
  209. return true;
  210. }
  211. static bool get_opt_int(int *p_argc, char ***p_argv, int *i, const char *opt)
  212. {
  213. char *str;
  214. if (!get_opt_str(p_argc, p_argv, &str, opt)) {
  215. return false;
  216. }
  217. *i = atoi(str);
  218. return true;
  219. }
  220. static bool get_audio_params(struct audio_params *audio, int *argc,
  221. char ***argv)
  222. {
  223. if (!get_opt_str(argc, argv, &audio->name, "audio track name"))
  224. return false;
  225. if (!get_opt_int(argc, argv, &audio->abitrate, "audio bitrate"))
  226. return false;
  227. if (!get_opt_int(argc, argv, &audio->sample_rate, "audio sample rate"))
  228. return false;
  229. if (!get_opt_int(argc, argv, &audio->frame_size, "audio frame size"))
  230. return false;
  231. if (!get_opt_int(argc, argv, &audio->channels, "audio channels"))
  232. return false;
  233. return true;
  234. }
  235. static void ffmpeg_log_callback(void *param, int level, const char *format,
  236. va_list args)
  237. {
  238. #ifdef ENABLE_FFMPEG_MUX_DEBUG
  239. char out_buffer[4096];
  240. struct dstr out = {0};
  241. vsnprintf(out_buffer, sizeof(out_buffer), format, args);
  242. dstr_copy(&out, out_buffer);
  243. if (global_stream_key && *global_stream_key) {
  244. dstr_replace(&out, global_stream_key, "{stream_key}");
  245. }
  246. switch (level) {
  247. case AV_LOG_INFO:
  248. fprintf(stdout, "info: [ffmpeg_muxer] %s", out.array);
  249. fflush(stdout);
  250. break;
  251. case AV_LOG_WARNING:
  252. fprintf(stdout, "%swarning: [ffmpeg_muxer] %s%s",
  253. ANSI_COLOR_MAGENTA, out.array, ANSI_COLOR_RESET);
  254. fflush(stdout);
  255. break;
  256. case AV_LOG_ERROR:
  257. fprintf(stderr, "%serror: [ffmpeg_muxer] %s%s", ANSI_COLOR_RED,
  258. out.array, ANSI_COLOR_RESET);
  259. fflush(stderr);
  260. }
  261. dstr_free(&out);
  262. #else
  263. UNUSED_PARAMETER(level);
  264. UNUSED_PARAMETER(format);
  265. UNUSED_PARAMETER(args);
  266. #endif
  267. UNUSED_PARAMETER(param);
  268. }
  269. static bool init_params(int *argc, char ***argv, struct main_params *params,
  270. struct audio_params **p_audio)
  271. {
  272. struct audio_params *audio = NULL;
  273. if (!get_opt_str(argc, argv, &params->file, "file name"))
  274. return false;
  275. if (!get_opt_int(argc, argv, &params->has_video, "video track count"))
  276. return false;
  277. if (!get_opt_int(argc, argv, &params->tracks, "audio track count"))
  278. return false;
  279. if (params->has_video > 1 || params->has_video < 0) {
  280. puts("Invalid number of video tracks\n");
  281. return false;
  282. }
  283. if (params->tracks < 0) {
  284. puts("Invalid number of audio tracks\n");
  285. return false;
  286. }
  287. if (params->has_video == 0 && params->tracks == 0) {
  288. puts("Must have at least 1 audio track or 1 video track\n");
  289. return false;
  290. }
  291. if (params->has_video) {
  292. if (!get_opt_str(argc, argv, &params->vcodec, "video codec"))
  293. return false;
  294. if (!get_opt_int(argc, argv, &params->vbitrate,
  295. "video bitrate"))
  296. return false;
  297. if (!get_opt_int(argc, argv, &params->width, "video width"))
  298. return false;
  299. if (!get_opt_int(argc, argv, &params->height, "video height"))
  300. return false;
  301. if (!get_opt_int(argc, argv, &params->color_primaries,
  302. "video color primaries"))
  303. return false;
  304. if (!get_opt_int(argc, argv, &params->color_trc,
  305. "video color trc"))
  306. return false;
  307. if (!get_opt_int(argc, argv, &params->colorspace,
  308. "video colorspace"))
  309. return false;
  310. if (!get_opt_int(argc, argv, &params->color_range,
  311. "video color range"))
  312. return false;
  313. if (!get_opt_int(argc, argv, &params->chroma_sample_location,
  314. "video chroma sample location"))
  315. return false;
  316. if (!get_opt_int(argc, argv, &params->max_luminance,
  317. "video max luminance"))
  318. return false;
  319. if (!get_opt_int(argc, argv, &params->fps_num, "video fps num"))
  320. return false;
  321. if (!get_opt_int(argc, argv, &params->fps_den, "video fps den"))
  322. return false;
  323. if (!get_opt_int(argc, argv, &params->codec_tag,
  324. "video codec tag"))
  325. params->codec_tag = 0;
  326. }
  327. if (params->tracks) {
  328. if (!get_opt_str(argc, argv, &params->acodec, "audio codec"))
  329. return false;
  330. audio = calloc(params->tracks, sizeof(*audio));
  331. for (int i = 0; i < params->tracks; i++) {
  332. if (!get_audio_params(&audio[i], argc, argv)) {
  333. free(audio);
  334. return false;
  335. }
  336. }
  337. }
  338. *p_audio = audio;
  339. dstr_copy(&params->printable_file, params->file);
  340. get_opt_str(argc, argv, &global_stream_key, "stream key");
  341. if (strcmp(global_stream_key, "") != 0) {
  342. dstr_replace(&params->printable_file, global_stream_key,
  343. "{stream_key}");
  344. }
  345. av_log_set_callback(ffmpeg_log_callback);
  346. get_opt_str(argc, argv, &params->muxer_settings, "muxer settings");
  347. return true;
  348. }
  349. static bool new_stream(struct ffmpeg_mux *ffm, AVStream **stream,
  350. const char *name)
  351. {
  352. *stream = avformat_new_stream(ffm->output, NULL);
  353. if (!*stream) {
  354. fprintf(stderr, "Couldn't create stream for encoder '%s'\n",
  355. name);
  356. return false;
  357. }
  358. (*stream)->id = ffm->output->nb_streams - 1;
  359. return true;
  360. }
  361. static void create_video_stream(struct ffmpeg_mux *ffm)
  362. {
  363. AVCodecContext *context;
  364. void *extradata = NULL;
  365. const char *name = ffm->params.vcodec;
  366. const AVCodecDescriptor *codec = avcodec_descriptor_get_by_name(name);
  367. if (!codec) {
  368. fprintf(stderr, "Couldn't find codec '%s'\n", name);
  369. return;
  370. }
  371. if (!new_stream(ffm, &ffm->video_stream, name))
  372. return;
  373. if (ffm->video_header.size) {
  374. extradata = av_memdup(ffm->video_header.data,
  375. ffm->video_header.size);
  376. }
  377. context = avcodec_alloc_context3(NULL);
  378. context->codec_type = codec->type;
  379. context->codec_id = codec->id;
  380. context->codec_tag = ffm->params.codec_tag;
  381. context->bit_rate = (int64_t)ffm->params.vbitrate * 1000;
  382. context->width = ffm->params.width;
  383. context->height = ffm->params.height;
  384. context->coded_width = ffm->params.width;
  385. context->coded_height = ffm->params.height;
  386. context->color_primaries = ffm->params.color_primaries;
  387. context->color_trc = ffm->params.color_trc;
  388. context->colorspace = ffm->params.colorspace;
  389. context->color_range = ffm->params.color_range;
  390. context->chroma_sample_location = ffm->params.chroma_sample_location;
  391. context->extradata = extradata;
  392. context->extradata_size = ffm->video_header.size;
  393. context->time_base =
  394. (AVRational){ffm->params.fps_den, ffm->params.fps_num};
  395. ffm->video_stream->time_base = context->time_base;
  396. #if LIBAVFORMAT_VERSION_MAJOR < 59
  397. // codec->time_base may still be used if LIBAVFORMAT_VERSION_MAJOR < 59
  398. PRAGMA_WARN_PUSH
  399. PRAGMA_WARN_DEPRECATION
  400. ffm->video_stream->codec->time_base = context->time_base;
  401. PRAGMA_WARN_POP
  402. #endif
  403. ffm->video_stream->avg_frame_rate = av_inv_q(context->time_base);
  404. const int max_luminance = ffm->params.max_luminance;
  405. if (max_luminance > 0) {
  406. size_t content_size;
  407. AVContentLightMetadata *const content =
  408. av_content_light_metadata_alloc(&content_size);
  409. content->MaxCLL = max_luminance;
  410. content->MaxFALL = max_luminance;
  411. av_stream_add_side_data(ffm->video_stream,
  412. AV_PKT_DATA_CONTENT_LIGHT_LEVEL,
  413. (uint8_t *)content, content_size);
  414. AVMasteringDisplayMetadata *const mastering =
  415. av_mastering_display_metadata_alloc();
  416. mastering->display_primaries[0][0] = av_make_q(17, 25);
  417. mastering->display_primaries[0][1] = av_make_q(8, 25);
  418. mastering->display_primaries[1][0] = av_make_q(53, 200);
  419. mastering->display_primaries[1][1] = av_make_q(69, 100);
  420. mastering->display_primaries[2][0] = av_make_q(3, 20);
  421. mastering->display_primaries[2][1] = av_make_q(3, 50);
  422. mastering->white_point[0] = av_make_q(3127, 10000);
  423. mastering->white_point[1] = av_make_q(329, 1000);
  424. mastering->min_luminance = av_make_q(0, 1);
  425. mastering->max_luminance = av_make_q(max_luminance, 1);
  426. mastering->has_primaries = 1;
  427. mastering->has_luminance = 1;
  428. av_stream_add_side_data(ffm->video_stream,
  429. AV_PKT_DATA_MASTERING_DISPLAY_METADATA,
  430. (uint8_t *)mastering,
  431. sizeof(*mastering));
  432. }
  433. if (ffm->output->oformat->flags & AVFMT_GLOBALHEADER)
  434. context->flags |= CODEC_FLAG_GLOBAL_H;
  435. avcodec_parameters_from_context(ffm->video_stream->codecpar, context);
  436. ffm->video_ctx = context;
  437. }
  438. static void create_audio_stream(struct ffmpeg_mux *ffm, int idx)
  439. {
  440. AVCodecContext *context;
  441. AVStream *stream;
  442. void *extradata = NULL;
  443. const char *name = ffm->params.acodec;
  444. int channels;
  445. const AVCodecDescriptor *codec = avcodec_descriptor_get_by_name(name);
  446. if (!codec) {
  447. fprintf(stderr, "Couldn't find codec '%s'\n", name);
  448. return;
  449. }
  450. if (!new_stream(ffm, &stream, name))
  451. return;
  452. av_dict_set(&stream->metadata, "title", ffm->audio[idx].name, 0);
  453. stream->time_base = (AVRational){1, ffm->audio[idx].sample_rate};
  454. if (ffm->audio_header[idx].size) {
  455. extradata = av_memdup(ffm->audio_header[idx].data,
  456. ffm->audio_header[idx].size);
  457. }
  458. context = avcodec_alloc_context3(NULL);
  459. context->codec_type = codec->type;
  460. context->codec_id = codec->id;
  461. context->bit_rate = (int64_t)ffm->audio[idx].abitrate * 1000;
  462. channels = ffm->audio[idx].channels;
  463. #if LIBAVUTIL_VERSION_INT < AV_VERSION_INT(57, 24, 100)
  464. context->channels = channels;
  465. #endif
  466. context->sample_rate = ffm->audio[idx].sample_rate;
  467. context->frame_size = ffm->audio[idx].frame_size;
  468. context->sample_fmt = AV_SAMPLE_FMT_S16;
  469. context->time_base = stream->time_base;
  470. context->extradata = extradata;
  471. context->extradata_size = ffm->audio_header[idx].size;
  472. #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(59, 24, 100)
  473. context->channel_layout = av_get_default_channel_layout(channels);
  474. //avutil default channel layout for 5 channels is 5.0 ; fix for 4.1
  475. if (channels == 5)
  476. context->channel_layout = av_get_channel_layout("4.1");
  477. #else
  478. av_channel_layout_default(&context->ch_layout, channels);
  479. //avutil default channel layout for 5 channels is 5.0 ; fix for 4.1
  480. if (channels == 5)
  481. context->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_4POINT1;
  482. #endif
  483. if (ffm->output->oformat->flags & AVFMT_GLOBALHEADER)
  484. context->flags |= CODEC_FLAG_GLOBAL_H;
  485. avcodec_parameters_from_context(stream->codecpar, context);
  486. ffm->audio_infos[ffm->num_audio_streams].stream = stream;
  487. ffm->audio_infos[ffm->num_audio_streams].ctx = context;
  488. ffm->num_audio_streams++;
  489. }
  490. static bool init_streams(struct ffmpeg_mux *ffm)
  491. {
  492. if (ffm->params.has_video)
  493. create_video_stream(ffm);
  494. if (ffm->params.tracks) {
  495. ffm->audio_infos =
  496. calloc(ffm->params.tracks, sizeof(*ffm->audio_infos));
  497. for (int i = 0; i < ffm->params.tracks; i++)
  498. create_audio_stream(ffm, i);
  499. }
  500. if (!ffm->video_stream && !ffm->num_audio_streams)
  501. return false;
  502. return true;
  503. }
  504. static void set_header(struct header *header, uint8_t *data, size_t size)
  505. {
  506. header->size = (int)size;
  507. header->data = malloc(size);
  508. memcpy(header->data, data, size);
  509. }
  510. static void ffmpeg_mux_header(struct ffmpeg_mux *ffm, uint8_t *data,
  511. struct ffm_packet_info *info)
  512. {
  513. if (info->type == FFM_PACKET_VIDEO) {
  514. set_header(&ffm->video_header, data, (size_t)info->size);
  515. } else {
  516. set_header(&ffm->audio_header[info->index], data,
  517. (size_t)info->size);
  518. }
  519. }
  520. static size_t safe_read(void *vdata, size_t size)
  521. {
  522. uint8_t *data = vdata;
  523. size_t total = size;
  524. while (size > 0) {
  525. size_t in_size = fread(data, 1, size, stdin);
  526. if (in_size == 0)
  527. return 0;
  528. size -= in_size;
  529. data += in_size;
  530. }
  531. return total;
  532. }
  533. static bool ffmpeg_mux_get_header(struct ffmpeg_mux *ffm)
  534. {
  535. struct ffm_packet_info info = {0};
  536. bool success = safe_read(&info, sizeof(info)) == sizeof(info);
  537. if (success) {
  538. uint8_t *data = malloc(info.size);
  539. if (safe_read(data, info.size) == info.size) {
  540. ffmpeg_mux_header(ffm, data, &info);
  541. } else {
  542. success = false;
  543. }
  544. free(data);
  545. }
  546. return success;
  547. }
  548. static inline bool ffmpeg_mux_get_extra_data(struct ffmpeg_mux *ffm)
  549. {
  550. if (ffm->params.has_video) {
  551. if (!ffmpeg_mux_get_header(ffm)) {
  552. return false;
  553. }
  554. }
  555. for (int i = 0; i < ffm->params.tracks; i++) {
  556. if (!ffmpeg_mux_get_header(ffm)) {
  557. return false;
  558. }
  559. }
  560. return true;
  561. }
  562. #ifdef _MSC_VER
  563. #pragma warning(disable : 4996)
  564. #endif
  565. #define CHUNK_SIZE 1048576
  566. static void *ffmpeg_mux_io_thread(void *data)
  567. {
  568. struct ffmpeg_mux *ffm = data;
  569. // Chunk collects the writes into a larger batch
  570. size_t chunk_used = 0;
  571. unsigned char *chunk = malloc(CHUNK_SIZE);
  572. if (!chunk) {
  573. os_atomic_set_bool(&ffm->io.output_error, true);
  574. fprintf(stderr, "Error allocating memory for output\n");
  575. goto error;
  576. }
  577. bool shutting_down;
  578. bool want_seek = false;
  579. bool force_flush_chunk = false;
  580. // current_seek_position is a virtual position updated as we read from
  581. // the buffer, if it becomes discontinuous due to a seek request from
  582. // ffmpeg, then we flush the chunk. next_seek_position is the actual
  583. // offset we should seek to when we write the chunk.
  584. uint64_t current_seek_position = 0;
  585. uint64_t next_seek_position;
  586. for (;;) {
  587. // Wait for ffmpeg to write data to the buffer
  588. os_event_wait(ffm->io.new_data_available_event);
  589. // Loop to write in chunk_size chunks
  590. for (;;) {
  591. shutting_down = os_atomic_load_bool(
  592. &ffm->io.shutdown_requested);
  593. pthread_mutex_lock(&ffm->io.data_mutex);
  594. // Fetch as many writes as possible from the circlebuf
  595. // and fill up our local chunk. This may involve seeking
  596. // if ffmpeg needs to, so take care of that as well.
  597. for (;;) {
  598. size_t available = ffm->io.data.size;
  599. // Buffer is empty (now) or was already empty (we got
  600. // woken up to exit)
  601. if (!available)
  602. break;
  603. // Get seek offset and data size
  604. struct io_header header;
  605. circlebuf_peek_front(&ffm->io.data, &header,
  606. sizeof(header));
  607. // Do we need to seek?
  608. if (header.seek_offset !=
  609. current_seek_position) {
  610. // If there's already part of a chunk pending,
  611. // flush it at the current offset. Similarly,
  612. // if we already plan to seek, then seek.
  613. if (chunk_used || want_seek) {
  614. force_flush_chunk = true;
  615. break;
  616. }
  617. // Mark that we need to seek and where to
  618. want_seek = true;
  619. next_seek_position = header.seek_offset;
  620. // Update our virtual position
  621. current_seek_position =
  622. header.seek_offset;
  623. }
  624. // Make sure there's enough room for the data, if
  625. // not then force a flush
  626. if (header.data_length + chunk_used >
  627. CHUNK_SIZE) {
  628. force_flush_chunk = true;
  629. break;
  630. }
  631. // Remove header that we already read
  632. circlebuf_pop_front(&ffm->io.data, NULL,
  633. sizeof(header));
  634. // Copy from the buffer to our local chunk
  635. circlebuf_pop_front(&ffm->io.data,
  636. chunk + chunk_used,
  637. header.data_length);
  638. // Update offsets
  639. chunk_used += header.data_length;
  640. current_seek_position += header.data_length;
  641. }
  642. // Signal that there is more room in the buffer
  643. os_event_signal(ffm->io.buffer_space_available_event);
  644. // Try to avoid lots of small writes unless this was the final
  645. // data left in the buffer. The buffer might be entirely empty
  646. // if we were woken up to exit.
  647. if (!force_flush_chunk &&
  648. (!chunk_used ||
  649. (chunk_used < 65536 && !shutting_down))) {
  650. os_event_reset(
  651. ffm->io.new_data_available_event);
  652. pthread_mutex_unlock(&ffm->io.data_mutex);
  653. break;
  654. }
  655. pthread_mutex_unlock(&ffm->io.data_mutex);
  656. // Seek if we need to
  657. if (want_seek) {
  658. os_fseeki64(ffm->io.output_file,
  659. next_seek_position, SEEK_SET);
  660. // Update the next virtual position, making sure to take
  661. // into account the size of the chunk we're about to write.
  662. current_seek_position =
  663. next_seek_position + chunk_used;
  664. want_seek = false;
  665. }
  666. // Write the current chunk to the output file
  667. if (fwrite(chunk, chunk_used, 1, ffm->io.output_file) !=
  668. 1) {
  669. os_atomic_set_bool(&ffm->io.output_error, true);
  670. fprintf(stderr, "Error writing to '%s', %s\n",
  671. ffm->params.printable_file.array,
  672. strerror(errno));
  673. goto error;
  674. }
  675. chunk_used = 0;
  676. force_flush_chunk = false;
  677. }
  678. // If this was the last chunk, time to exit
  679. if (shutting_down)
  680. break;
  681. }
  682. error:
  683. if (chunk)
  684. free(chunk);
  685. fclose(ffm->io.output_file);
  686. return NULL;
  687. }
  688. static int64_t ffmpeg_mux_seek_av_buffer(void *opaque, int64_t offset,
  689. int whence)
  690. {
  691. struct ffmpeg_mux *ffm = opaque;
  692. // If the output thread failed, signal that back up the stack
  693. if (os_atomic_load_bool(&ffm->io.output_error))
  694. return -1;
  695. // Update where the next write should go
  696. pthread_mutex_lock(&ffm->io.data_mutex);
  697. if (whence == SEEK_SET)
  698. ffm->io.next_pos = offset;
  699. else if (whence == SEEK_CUR)
  700. ffm->io.next_pos += offset;
  701. pthread_mutex_unlock(&ffm->io.data_mutex);
  702. return 0;
  703. }
  704. static int ffmpeg_mux_write_av_buffer(void *opaque, uint8_t *buf, int buf_size)
  705. {
  706. struct ffmpeg_mux *ffm = opaque;
  707. // If the output thread failed, signal that back up the stack
  708. if (os_atomic_load_bool(&ffm->io.output_error))
  709. return -1;
  710. for (;;) {
  711. pthread_mutex_lock(&ffm->io.data_mutex);
  712. // Avoid unbounded growth of the circlebuf, cap to 256 MB
  713. if (ffm->io.data.capacity >= 256 * 1048576 &&
  714. ffm->io.data.capacity - ffm->io.data.size <
  715. buf_size + sizeof(struct io_header)) {
  716. // No space, wait for the I/O thread to make space
  717. os_event_reset(ffm->io.buffer_space_available_event);
  718. pthread_mutex_unlock(&ffm->io.data_mutex);
  719. os_event_wait(ffm->io.buffer_space_available_event);
  720. } else {
  721. break;
  722. }
  723. }
  724. struct io_header header;
  725. header.data_length = buf_size;
  726. header.seek_offset = ffm->io.next_pos;
  727. // Copy the data into the buffer
  728. circlebuf_push_back(&ffm->io.data, &header, sizeof(header));
  729. circlebuf_push_back(&ffm->io.data, buf, buf_size);
  730. // Advance the next write position
  731. ffm->io.next_pos += buf_size;
  732. // Tell the I/O thread that there's new data to be written
  733. os_event_signal(ffm->io.new_data_available_event);
  734. pthread_mutex_unlock(&ffm->io.data_mutex);
  735. return buf_size;
  736. }
  737. #define SRT_PROTO "srt"
  738. #define UDP_PROTO "udp"
  739. #define TCP_PROTO "tcp"
  740. #define HTTP_PROTO "http"
  741. #define RIST_PROTO "rist"
  742. static bool ffmpeg_mux_is_network(struct ffmpeg_mux *ffm)
  743. {
  744. return !strncmp(ffm->params.file, SRT_PROTO, sizeof(SRT_PROTO) - 1) ||
  745. !strncmp(ffm->params.file, UDP_PROTO, sizeof(UDP_PROTO) - 1) ||
  746. !strncmp(ffm->params.file, TCP_PROTO, sizeof(TCP_PROTO) - 1) ||
  747. !strncmp(ffm->params.file, HTTP_PROTO, sizeof(HTTP_PROTO) - 1) ||
  748. !strncmp(ffm->params.file, RIST_PROTO, sizeof(RIST_PROTO) - 1);
  749. }
  750. static inline int open_output_file(struct ffmpeg_mux *ffm)
  751. {
  752. #if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(59, 0, 100)
  753. AVOutputFormat *format = ffm->output->oformat;
  754. #else
  755. const AVOutputFormat *format = ffm->output->oformat;
  756. #endif
  757. int ret;
  758. if ((format->flags & AVFMT_NOFILE) == 0) {
  759. if (!ffmpeg_mux_is_network(ffm)) {
  760. // If not outputting to a network, write to a circlebuf
  761. // instead of relying on ffmpeg disk output. This hopefully
  762. // works around too small buffers somewhere causing output
  763. // stalls when recording.
  764. // We're in charge of managing the actual file now
  765. ffm->io.output_file = os_fopen(ffm->params.file, "wb");
  766. if (!ffm->io.output_file) {
  767. fprintf(stderr, "Couldn't open '%s', %s\n",
  768. ffm->params.printable_file.array,
  769. strerror(errno));
  770. return FFM_ERROR;
  771. }
  772. // Start at 1MB, this can grow up to 256 MB depending
  773. // how fast data is going in and out (limited in
  774. // ffmpeg_mux_write_av_buffer)
  775. circlebuf_reserve(&ffm->io.data, 1048576);
  776. pthread_mutex_init(&ffm->io.data_mutex, NULL);
  777. os_event_init(&ffm->io.buffer_space_available_event,
  778. OS_EVENT_TYPE_AUTO);
  779. os_event_init(&ffm->io.new_data_available_event,
  780. OS_EVENT_TYPE_AUTO);
  781. pthread_create(&ffm->io.io_thread, NULL,
  782. ffmpeg_mux_io_thread, ffm);
  783. unsigned char *avio_ctx_buffer =
  784. av_malloc(AVIO_BUFFER_SIZE);
  785. ffm->output->pb = avio_alloc_context(
  786. avio_ctx_buffer, AVIO_BUFFER_SIZE, 1, ffm, NULL,
  787. ffmpeg_mux_write_av_buffer,
  788. ffmpeg_mux_seek_av_buffer);
  789. ffm->io.active = true;
  790. } else {
  791. ret = avio_open(&ffm->output->pb, ffm->params.file,
  792. AVIO_FLAG_WRITE);
  793. if (ret < 0) {
  794. fprintf(stderr, "Couldn't open '%s', %s\n",
  795. ffm->params.printable_file.array,
  796. av_err2str(ret));
  797. return FFM_ERROR;
  798. }
  799. }
  800. }
  801. AVDictionary *dict = NULL;
  802. if ((ret = av_dict_parse_string(&dict, ffm->params.muxer_settings, "=",
  803. " ", 0))) {
  804. fprintf(stderr, "Failed to parse muxer settings: %s\n%s\n",
  805. av_err2str(ret), ffm->params.muxer_settings);
  806. av_dict_free(&dict);
  807. }
  808. if (av_dict_count(dict) > 0) {
  809. printf("Using muxer settings:");
  810. AVDictionaryEntry *entry = NULL;
  811. while ((entry = av_dict_get(dict, "", entry,
  812. AV_DICT_IGNORE_SUFFIX)))
  813. printf("\n\t%s=%s", entry->key, entry->value);
  814. printf("\n");
  815. }
  816. ret = avformat_write_header(ffm->output, &dict);
  817. if (ret < 0) {
  818. fprintf(stderr, "Error opening '%s': %s",
  819. ffm->params.printable_file.array, av_err2str(ret));
  820. av_dict_free(&dict);
  821. return ret == -22 ? FFM_UNSUPPORTED : FFM_ERROR;
  822. }
  823. av_dict_free(&dict);
  824. return FFM_SUCCESS;
  825. }
  826. static int ffmpeg_mux_init_context(struct ffmpeg_mux *ffm)
  827. {
  828. #if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(59, 0, 100)
  829. AVOutputFormat *output_format;
  830. #else
  831. const AVOutputFormat *output_format;
  832. #endif
  833. int ret;
  834. bool is_http = false;
  835. is_http = (strncmp(ffm->params.file, HTTP_PROTO,
  836. sizeof(HTTP_PROTO) - 1) == 0);
  837. bool is_network = ffmpeg_mux_is_network(ffm);
  838. if (is_network) {
  839. avformat_network_init();
  840. }
  841. if (is_network && !is_http)
  842. output_format = av_guess_format("mpegts", NULL, "video/M2PT");
  843. else
  844. output_format = av_guess_format(NULL, ffm->params.file, NULL);
  845. if (output_format == NULL) {
  846. fprintf(stderr, "Couldn't find an appropriate muxer for '%s'\n",
  847. ffm->params.printable_file.array);
  848. return FFM_ERROR;
  849. }
  850. #ifdef ENABLE_FFMPEG_MUX_DEBUG
  851. printf("info: Output format name and long_name: %s, %s\n",
  852. output_format->name ? output_format->name : "unknown",
  853. output_format->long_name ? output_format->long_name : "unknown");
  854. #endif
  855. ret = avformat_alloc_output_context2(&ffm->output, output_format, NULL,
  856. ffm->params.file);
  857. if (ret < 0) {
  858. fprintf(stderr, "Couldn't initialize output context: %s\n",
  859. av_err2str(ret));
  860. return FFM_ERROR;
  861. }
  862. #if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(59, 0, 100)
  863. ffm->output->oformat->video_codec = AV_CODEC_ID_NONE;
  864. ffm->output->oformat->audio_codec = AV_CODEC_ID_NONE;
  865. #endif
  866. if (!init_streams(ffm)) {
  867. free_avformat(ffm);
  868. return FFM_ERROR;
  869. }
  870. ret = open_output_file(ffm);
  871. if (ret != FFM_SUCCESS) {
  872. free_avformat(ffm);
  873. return ret;
  874. }
  875. return FFM_SUCCESS;
  876. }
  877. static int ffmpeg_mux_init_internal(struct ffmpeg_mux *ffm, int argc,
  878. char *argv[])
  879. {
  880. argc--;
  881. argv++;
  882. if (!init_params(&argc, &argv, &ffm->params, &ffm->audio))
  883. return FFM_ERROR;
  884. if (ffm->params.tracks) {
  885. ffm->audio_header =
  886. calloc(ffm->params.tracks, sizeof(*ffm->audio_header));
  887. }
  888. #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 9, 100)
  889. av_register_all();
  890. #endif
  891. if (!ffmpeg_mux_get_extra_data(ffm))
  892. return FFM_ERROR;
  893. ffm->packet = av_packet_alloc();
  894. /* ffmpeg does not have a way of telling what's supported
  895. * for a given output format, so we try each possibility */
  896. return ffmpeg_mux_init_context(ffm);
  897. }
  898. static int ffmpeg_mux_init(struct ffmpeg_mux *ffm, int argc, char *argv[])
  899. {
  900. int ret = ffmpeg_mux_init_internal(ffm, argc, argv);
  901. if (ret != FFM_SUCCESS) {
  902. ffmpeg_mux_free(ffm);
  903. return ret;
  904. }
  905. ffm->initialized = true;
  906. return ret;
  907. }
  908. static inline int get_index(struct ffmpeg_mux *ffm,
  909. struct ffm_packet_info *info)
  910. {
  911. if (info->type == FFM_PACKET_VIDEO) {
  912. if (ffm->video_stream) {
  913. return ffm->video_stream->id;
  914. }
  915. } else {
  916. if ((int)info->index < ffm->num_audio_streams) {
  917. return ffm->audio_infos[info->index].stream->id;
  918. }
  919. }
  920. return -1;
  921. }
  922. static AVCodecContext *get_codec_context(struct ffmpeg_mux *ffm,
  923. struct ffm_packet_info *info)
  924. {
  925. if (info->type == FFM_PACKET_VIDEO) {
  926. if (ffm->video_stream) {
  927. return ffm->video_ctx;
  928. }
  929. } else {
  930. if ((int)info->index < ffm->num_audio_streams) {
  931. return ffm->audio_infos[info->index].ctx;
  932. }
  933. }
  934. return NULL;
  935. }
  936. static inline AVStream *get_stream(struct ffmpeg_mux *ffm, int idx)
  937. {
  938. return ffm->output->streams[idx];
  939. }
  940. static inline int64_t rescale_ts(struct ffmpeg_mux *ffm,
  941. AVRational codec_time_base, int64_t val,
  942. int idx)
  943. {
  944. AVStream *stream = get_stream(ffm, idx);
  945. return av_rescale_q_rnd(val / codec_time_base.num, codec_time_base,
  946. stream->time_base,
  947. AV_ROUND_NEAR_INF | AV_ROUND_PASS_MINMAX);
  948. }
  949. static inline bool ffmpeg_mux_packet(struct ffmpeg_mux *ffm, uint8_t *buf,
  950. struct ffm_packet_info *info)
  951. {
  952. int idx = get_index(ffm, info);
  953. /* The muxer might not support video/audio, or multiple audio tracks */
  954. if (idx == -1) {
  955. return true;
  956. }
  957. const AVRational codec_time_base =
  958. get_codec_context(ffm, info)->time_base;
  959. ffm->packet->data = buf;
  960. ffm->packet->size = (int)info->size;
  961. ffm->packet->stream_index = idx;
  962. ffm->packet->pts = rescale_ts(ffm, codec_time_base, info->pts, idx);
  963. ffm->packet->dts = rescale_ts(ffm, codec_time_base, info->dts, idx);
  964. if (info->keyframe)
  965. ffm->packet->flags = AV_PKT_FLAG_KEY;
  966. int ret = av_interleaved_write_frame(ffm->output, ffm->packet);
  967. /* Treat "Invalid data found when processing input" and "Invalid argument" as non-fatal */
  968. if (ret == AVERROR_INVALIDDATA || ret == -EINVAL) {
  969. return true;
  970. }
  971. if (ret < 0) {
  972. fprintf(stderr, "av_interleaved_write_frame failed: %d: %s\n",
  973. ret, av_err2str(ret));
  974. }
  975. return ret >= 0;
  976. }
  977. static inline bool read_change_file(struct ffmpeg_mux *ffm, uint32_t size,
  978. struct resize_buf *filename, int argc,
  979. char **argv)
  980. {
  981. resize_buf_resize(filename, size + 1);
  982. if (safe_read(filename->buf, size) != size) {
  983. return false;
  984. }
  985. filename->buf[size] = 0;
  986. #ifdef ENABLE_FFMPEG_MUX_DEBUG
  987. fprintf(stderr, "info: New output file name: %s\n", filename->buf);
  988. #endif
  989. int ret;
  990. char *argv1_backup = argv[1];
  991. argv[1] = (char *)filename->buf;
  992. ffmpeg_mux_free(ffm);
  993. ret = ffmpeg_mux_init(ffm, argc, argv);
  994. if (ret != FFM_SUCCESS) {
  995. fprintf(stderr, "Couldn't initialize muxer\n");
  996. return false;
  997. }
  998. argv[1] = argv1_backup;
  999. return true;
  1000. }
  1001. /* ------------------------------------------------------------------------- */
  1002. #ifdef _WIN32
  1003. int wmain(int argc, wchar_t *argv_w[])
  1004. #else
  1005. int main(int argc, char *argv[])
  1006. #endif
  1007. {
  1008. struct ffm_packet_info info = {0};
  1009. struct ffmpeg_mux ffm = {0};
  1010. struct resize_buf rb = {0};
  1011. struct resize_buf rb_filename = {0};
  1012. bool fail = false;
  1013. int ret;
  1014. #ifdef _WIN32
  1015. char **argv;
  1016. SetErrorMode(SEM_FAILCRITICALERRORS);
  1017. argv = malloc(argc * sizeof(char *));
  1018. for (int i = 0; i < argc; i++) {
  1019. size_t len = wcslen(argv_w[i]);
  1020. int size;
  1021. size = WideCharToMultiByte(CP_UTF8, 0, argv_w[i], (int)len,
  1022. NULL, 0, NULL, NULL);
  1023. argv[i] = malloc(size + 1);
  1024. WideCharToMultiByte(CP_UTF8, 0, argv_w[i], (int)len, argv[i],
  1025. size + 1, NULL, NULL);
  1026. argv[i][size] = 0;
  1027. }
  1028. _setmode(_fileno(stdin), O_BINARY);
  1029. #endif
  1030. setvbuf(stderr, NULL, _IONBF, 0);
  1031. ret = ffmpeg_mux_init(&ffm, argc, argv);
  1032. if (ret != FFM_SUCCESS) {
  1033. fprintf(stderr, "Couldn't initialize muxer\n");
  1034. return ret;
  1035. }
  1036. while (!fail && safe_read(&info, sizeof(info)) == sizeof(info)) {
  1037. if (info.type == FFM_PACKET_CHANGE_FILE) {
  1038. fail = !read_change_file(&ffm, info.size, &rb_filename,
  1039. argc, argv);
  1040. continue;
  1041. }
  1042. resize_buf_resize(&rb, info.size);
  1043. if (safe_read(rb.buf, info.size) == info.size) {
  1044. fail = !ffmpeg_mux_packet(&ffm, rb.buf, &info);
  1045. } else {
  1046. fail = true;
  1047. }
  1048. }
  1049. ffmpeg_mux_free(&ffm);
  1050. resize_buf_free(&rb);
  1051. resize_buf_free(&rb_filename);
  1052. #ifdef _WIN32
  1053. for (int i = 0; i < argc; i++)
  1054. free(argv[i]);
  1055. free(argv);
  1056. #endif
  1057. return 0;
  1058. }