123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722 |
- /******************************************************************************
- Copyright (C) 2023 by Lain Bailey <[email protected]>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- ******************************************************************************/
- #include <obs.h>
- #include <stdio.h>
- #include <util/dstr.h>
- #include <util/array-serializer.h>
- #include "flv-mux.h"
- #include "obs-output-ver.h"
- #include "rtmp-helpers.h"
- /* TODO: FIXME: this is currently hard-coded to h264 and aac! ..not that we'll
- * use anything else for a long time. */
- //#define DEBUG_TIMESTAMPS
- //#define WRITE_FLV_HEADER
- #define VIDEODATA_AVCVIDEOPACKET 7.0
- #define AUDIODATA_AAC 10.0
- #define VIDEO_FRAMETYPE_OFFSET 4
- enum video_frametype_t {
- FT_KEY = 1 << VIDEO_FRAMETYPE_OFFSET,
- FT_INTER = 2 << VIDEO_FRAMETYPE_OFFSET,
- };
- // Y2023 spec
- const uint8_t FRAME_HEADER_EX = 8 << VIDEO_FRAMETYPE_OFFSET;
- enum packet_type_t {
- PACKETTYPE_SEQ_START = 0,
- PACKETTYPE_FRAMES = 1,
- PACKETTYPE_SEQ_END = 2,
- #ifdef ENABLE_HEVC
- PACKETTYPE_FRAMESX = 3,
- #endif
- PACKETTYPE_METADATA = 4
- };
- enum datatype_t {
- DATA_TYPE_NUMBER = 0,
- DATA_TYPE_STRING = 2,
- DATA_TYPE_OBJECT = 3,
- DATA_TYPE_OBJECT_END = 9,
- };
- static void s_w4cc(struct serializer *s, enum video_id_t id)
- {
- switch (id) {
- case CODEC_AV1:
- s_w8(s, 'a');
- s_w8(s, 'v');
- s_w8(s, '0');
- s_w8(s, '1');
- break;
- #ifdef ENABLE_HEVC
- case CODEC_HEVC:
- s_w8(s, 'h');
- s_w8(s, 'v');
- s_w8(s, 'c');
- s_w8(s, '1');
- break;
- #endif
- case CODEC_H264:
- assert(0);
- }
- }
- static void s_wstring(struct serializer *s, const char *str)
- {
- size_t len = strlen(str);
- s_wb16(s, (uint16_t)len);
- s_write(s, str, len);
- }
- static inline void s_wtimestamp(struct serializer *s, int32_t i32)
- {
- s_wb24(s, (uint32_t)(i32 & 0xFFFFFF));
- s_w8(s, (uint32_t)(i32 >> 24) & 0x7F);
- }
- static inline double encoder_bitrate(obs_encoder_t *encoder)
- {
- obs_data_t *settings = obs_encoder_get_settings(encoder);
- double bitrate = obs_data_get_double(settings, "bitrate");
- obs_data_release(settings);
- return bitrate;
- }
- #define FLV_INFO_SIZE_OFFSET 42
- void write_file_info(FILE *file, int64_t duration_ms, int64_t size)
- {
- char buf[64];
- char *enc = buf;
- char *end = enc + sizeof(buf);
- fseek(file, FLV_INFO_SIZE_OFFSET, SEEK_SET);
- enc_num_val(&enc, end, "duration", (double)duration_ms / 1000.0);
- enc_num_val(&enc, end, "fileSize", (double)size);
- fwrite(buf, 1, enc - buf, file);
- }
- static void build_flv_meta_data(obs_output_t *context, uint8_t **output,
- size_t *size)
- {
- obs_encoder_t *vencoder = obs_output_get_video_encoder(context);
- obs_encoder_t *aencoder = obs_output_get_audio_encoder(context, 0);
- video_t *video = obs_encoder_video(vencoder);
- audio_t *audio = obs_encoder_audio(aencoder);
- char buf[4096];
- char *enc = buf;
- char *end = enc + sizeof(buf);
- struct dstr encoder_name = {0};
- enc_str(&enc, end, "@setDataFrame");
- enc_str(&enc, end, "onMetaData");
- *enc++ = AMF_ECMA_ARRAY;
- enc = AMF_EncodeInt32(enc, end, 20);
- enc_num_val(&enc, end, "duration", 0.0);
- enc_num_val(&enc, end, "fileSize", 0.0);
- enc_num_val(&enc, end, "width",
- (double)obs_encoder_get_width(vencoder));
- enc_num_val(&enc, end, "height",
- (double)obs_encoder_get_height(vencoder));
- enc_num_val(&enc, end, "videocodecid", VIDEODATA_AVCVIDEOPACKET);
- enc_num_val(&enc, end, "videodatarate", encoder_bitrate(vencoder));
- enc_num_val(&enc, end, "framerate", video_output_get_frame_rate(video));
- enc_num_val(&enc, end, "audiocodecid", AUDIODATA_AAC);
- enc_num_val(&enc, end, "audiodatarate", encoder_bitrate(aencoder));
- enc_num_val(&enc, end, "audiosamplerate",
- (double)obs_encoder_get_sample_rate(aencoder));
- enc_num_val(&enc, end, "audiosamplesize", 16.0);
- enc_num_val(&enc, end, "audiochannels",
- (double)audio_output_get_channels(audio));
- enc_bool_val(&enc, end, "stereo",
- audio_output_get_channels(audio) == 2);
- enc_bool_val(&enc, end, "2.1", audio_output_get_channels(audio) == 3);
- enc_bool_val(&enc, end, "3.1", audio_output_get_channels(audio) == 4);
- enc_bool_val(&enc, end, "4.0", audio_output_get_channels(audio) == 4);
- enc_bool_val(&enc, end, "4.1", audio_output_get_channels(audio) == 5);
- enc_bool_val(&enc, end, "5.1", audio_output_get_channels(audio) == 6);
- enc_bool_val(&enc, end, "7.1", audio_output_get_channels(audio) == 8);
- dstr_printf(&encoder_name, "%s (libobs version ", MODULE_NAME);
- #ifdef HAVE_OBSCONFIG_H
- dstr_cat(&encoder_name, obs_get_version_string());
- #else
- dstr_catf(&encoder_name, "%d.%d.%d", LIBOBS_API_MAJOR_VER,
- LIBOBS_API_MINOR_VER, LIBOBS_API_PATCH_VER);
- #endif
- dstr_cat(&encoder_name, ")");
- enc_str_val(&enc, end, "encoder", encoder_name.array);
- dstr_free(&encoder_name);
- *enc++ = 0;
- *enc++ = 0;
- *enc++ = AMF_OBJECT_END;
- *size = enc - buf;
- *output = bmemdup(buf, *size);
- }
- void flv_meta_data(obs_output_t *context, uint8_t **output, size_t *size,
- bool write_header)
- {
- struct array_output_data data;
- struct serializer s;
- uint8_t *meta_data = NULL;
- size_t meta_data_size;
- uint32_t start_pos;
- array_output_serializer_init(&s, &data);
- build_flv_meta_data(context, &meta_data, &meta_data_size);
- if (write_header) {
- s_write(&s, "FLV", 3);
- s_w8(&s, 1);
- s_w8(&s, 5);
- s_wb32(&s, 9);
- s_wb32(&s, 0);
- }
- start_pos = serializer_get_pos(&s);
- s_w8(&s, RTMP_PACKET_TYPE_INFO);
- s_wb24(&s, (uint32_t)meta_data_size);
- s_wb32(&s, 0);
- s_wb24(&s, 0);
- s_write(&s, meta_data, meta_data_size);
- s_wb32(&s, (uint32_t)serializer_get_pos(&s) - start_pos - 1);
- *output = data.bytes.array;
- *size = data.bytes.num;
- bfree(meta_data);
- }
- #ifdef DEBUG_TIMESTAMPS
- static int32_t last_time = 0;
- #endif
- static void flv_video(struct serializer *s, int32_t dts_offset,
- struct encoder_packet *packet, bool is_header)
- {
- int64_t offset = packet->pts - packet->dts;
- int32_t time_ms = get_ms_time(packet, packet->dts) - dts_offset;
- if (!packet->data || !packet->size)
- return;
- s_w8(s, RTMP_PACKET_TYPE_VIDEO);
- #ifdef DEBUG_TIMESTAMPS
- blog(LOG_DEBUG, "Video: %lu", time_ms);
- if (last_time > time_ms)
- blog(LOG_DEBUG, "Non-monotonic");
- last_time = time_ms;
- #endif
- s_wb24(s, (uint32_t)packet->size + 5);
- s_wb24(s, (uint32_t)time_ms);
- s_w8(s, (time_ms >> 24) & 0x7F);
- s_wb24(s, 0);
- /* these are the 5 extra bytes mentioned above */
- s_w8(s, packet->keyframe ? 0x17 : 0x27);
- s_w8(s, is_header ? 0 : 1);
- s_wb24(s, get_ms_time(packet, offset));
- s_write(s, packet->data, packet->size);
- /* write tag size (starting byte doesn't count) */
- s_wb32(s, (uint32_t)serializer_get_pos(s) - 1);
- }
- static void flv_audio(struct serializer *s, int32_t dts_offset,
- struct encoder_packet *packet, bool is_header)
- {
- int32_t time_ms = get_ms_time(packet, packet->dts) - dts_offset;
- if (!packet->data || !packet->size)
- return;
- s_w8(s, RTMP_PACKET_TYPE_AUDIO);
- #ifdef DEBUG_TIMESTAMPS
- blog(LOG_DEBUG, "Audio: %lu", time_ms);
- if (last_time > time_ms)
- blog(LOG_DEBUG, "Non-monotonic");
- last_time = time_ms;
- #endif
- s_wb24(s, (uint32_t)packet->size + 2);
- s_wb24(s, (uint32_t)time_ms);
- s_w8(s, (time_ms >> 24) & 0x7F);
- s_wb24(s, 0);
- /* these are the two extra bytes mentioned above */
- s_w8(s, 0xaf);
- s_w8(s, is_header ? 0 : 1);
- s_write(s, packet->data, packet->size);
- /* write tag size (starting byte doesn't count) */
- s_wb32(s, (uint32_t)serializer_get_pos(s) - 1);
- }
- void flv_packet_mux(struct encoder_packet *packet, int32_t dts_offset,
- uint8_t **output, size_t *size, bool is_header)
- {
- struct array_output_data data;
- struct serializer s;
- array_output_serializer_init(&s, &data);
- if (packet->type == OBS_ENCODER_VIDEO)
- flv_video(&s, dts_offset, packet, is_header);
- else
- flv_audio(&s, dts_offset, packet, is_header);
- *output = data.bytes.array;
- *size = data.bytes.num;
- }
- // Y2023 spec
- void flv_packet_ex(struct encoder_packet *packet, enum video_id_t codec_id,
- int32_t dts_offset, uint8_t **output, size_t *size, int type)
- {
- struct array_output_data data;
- struct serializer s;
- array_output_serializer_init(&s, &data);
- assert(packet->type == OBS_ENCODER_VIDEO);
- int32_t time_ms = get_ms_time(packet, packet->dts) - dts_offset;
- // packet head
- int header_metadata_size = 5;
- #ifdef ENABLE_HEVC
- // 3 extra bytes for composition time offset
- if (codec_id == CODEC_HEVC && type == PACKETTYPE_FRAMES) {
- header_metadata_size = 8;
- }
- #endif
- s_w8(&s, RTMP_PACKET_TYPE_VIDEO);
- s_wb24(&s, (uint32_t)packet->size + header_metadata_size);
- s_wtimestamp(&s, time_ms);
- s_wb24(&s, 0); // always 0
- // packet ext header
- s_w8(&s,
- FRAME_HEADER_EX | type | (packet->keyframe ? FT_KEY : FT_INTER));
- s_w4cc(&s, codec_id);
- #ifdef ENABLE_HEVC
- // hevc composition time offset
- if (codec_id == CODEC_HEVC && type == PACKETTYPE_FRAMES) {
- s_wb24(&s, get_ms_time(packet, packet->pts - packet->dts));
- }
- #endif
- // packet data
- s_write(&s, packet->data, packet->size);
- // packet tail
- s_wb32(&s, (uint32_t)serializer_get_pos(&s) - 1);
- *output = data.bytes.array;
- *size = data.bytes.num;
- }
- void flv_packet_start(struct encoder_packet *packet, enum video_id_t codec,
- uint8_t **output, size_t *size)
- {
- flv_packet_ex(packet, codec, 0, output, size, PACKETTYPE_SEQ_START);
- }
- void flv_packet_frames(struct encoder_packet *packet, enum video_id_t codec,
- int32_t dts_offset, uint8_t **output, size_t *size)
- {
- int packet_type = PACKETTYPE_FRAMES;
- #ifdef ENABLE_HEVC
- // PACKETTYPE_FRAMESX is an optimization to avoid sending composition
- // time offsets of 0. See Enhanced RTMP spec.
- if (codec == CODEC_HEVC && packet->dts == packet->pts)
- packet_type = PACKETTYPE_FRAMESX;
- #endif
- flv_packet_ex(packet, codec, dts_offset, output, size, packet_type);
- }
- void flv_packet_end(struct encoder_packet *packet, enum video_id_t codec,
- uint8_t **output, size_t *size)
- {
- flv_packet_ex(packet, codec, 0, output, size, PACKETTYPE_SEQ_END);
- }
- void flv_packet_metadata(enum video_id_t codec_id, uint8_t **output,
- size_t *size, int bits_per_raw_sample,
- uint8_t color_primaries, int color_trc,
- int color_space, int min_luminance, int max_luminance)
- {
- // metadata array
- struct array_output_data data;
- struct array_output_data metadata;
- struct serializer s;
- array_output_serializer_init(&s, &data);
- // metadata data array
- {
- struct serializer s;
- array_output_serializer_init(&s, &metadata);
- s_w8(&s, DATA_TYPE_STRING);
- s_wstring(&s, "colorInfo");
- s_w8(&s, DATA_TYPE_OBJECT);
- {
- // colorConfig:
- s_wstring(&s, "colorConfig");
- s_w8(&s, DATA_TYPE_OBJECT);
- {
- s_wstring(&s, "bitDepth");
- s_w8(&s, DATA_TYPE_NUMBER);
- s_wbd(&s, bits_per_raw_sample);
- s_wstring(&s, "colorPrimaries");
- s_w8(&s, DATA_TYPE_NUMBER);
- s_wbd(&s, color_primaries);
- s_wstring(&s, "transferCharacteristics");
- s_w8(&s, DATA_TYPE_NUMBER);
- s_wbd(&s, color_trc);
- s_wstring(&s, "matrixCoefficients");
- s_w8(&s, DATA_TYPE_NUMBER);
- s_wbd(&s, color_space);
- }
- s_w8(&s, 0);
- s_w8(&s, 0);
- s_w8(&s, DATA_TYPE_OBJECT_END);
- if (max_luminance != 0) {
- // hdrMdcv
- s_wstring(&s, "hdrMdcv");
- s_w8(&s, DATA_TYPE_OBJECT);
- {
- s_wstring(&s, "maxLuminance");
- s_w8(&s, DATA_TYPE_NUMBER);
- s_wbd(&s, max_luminance);
- s_wstring(&s, "minLuminance");
- s_w8(&s, DATA_TYPE_NUMBER);
- s_wbd(&s, min_luminance);
- }
- s_w8(&s, 0);
- s_w8(&s, 0);
- s_w8(&s, DATA_TYPE_OBJECT_END);
- }
- }
- s_w8(&s, 0);
- s_w8(&s, 0);
- s_w8(&s, DATA_TYPE_OBJECT_END);
- }
- // packet head
- s_w8(&s, RTMP_PACKET_TYPE_VIDEO);
- s_wb24(&s, (uint32_t)metadata.bytes.num + 5); // 5 = (w8+w4cc)
- s_wtimestamp(&s, 0);
- s_wb24(&s, 0); // always 0
- // packet ext header
- // these are the 5 extra bytes mentioned above
- s_w8(&s, FRAME_HEADER_EX | PACKETTYPE_METADATA);
- s_w4cc(&s, codec_id);
- // packet data
- s_write(&s, metadata.bytes.array, metadata.bytes.num);
- array_output_serializer_free(&metadata); // must be freed
- // packet tail
- s_wb32(&s, (uint32_t)serializer_get_pos(&s) - 1);
- *output = data.bytes.array;
- *size = data.bytes.num;
- }
- /* ------------------------------------------------------------------------- */
- /* stuff for additional media streams */
- #define s_amf_conststring(s, str) \
- do { \
- const size_t len = sizeof(str) - 1; \
- s_wb16(s, (uint16_t)len); \
- serialize(s, str, len); \
- } while (false)
- #define s_amf_double(s, d) \
- do { \
- double d_val = d; \
- uint64_t u_val = *(uint64_t *)&d_val; \
- s_wb64(s, u_val); \
- } while (false)
- static void flv_build_additional_meta_data(uint8_t **data, size_t *size)
- {
- struct array_output_data out;
- struct serializer s;
- array_output_serializer_init(&s, &out);
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "@setDataFrame");
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "onExpectAdditionalMedia");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "processingIntents");
- s_w8(&s, AMF_STRICT_ARRAY);
- s_wb32(&s, 1);
- {
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "ArchiveProgramNarrationAudio");
- }
- /* ---- */
- s_amf_conststring(&s, "additionalMedia");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "stream0");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "type");
- s_w8(&s, AMF_NUMBER);
- s_amf_double(&s, RTMP_PACKET_TYPE_AUDIO);
- /* ---- */
- s_amf_conststring(&s, "mediaLabels");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "contentType");
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "PNAR");
- }
- s_wb24(&s, AMF_OBJECT_END);
- }
- s_wb24(&s, AMF_OBJECT_END);
- }
- s_wb24(&s, AMF_OBJECT_END);
- /* ---- */
- s_amf_conststring(&s, "defaultMedia");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "audio");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "mediaLabels");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "contentType");
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "PRM");
- }
- s_wb24(&s, AMF_OBJECT_END);
- }
- s_wb24(&s, AMF_OBJECT_END);
- }
- s_wb24(&s, AMF_OBJECT_END);
- }
- s_wb24(&s, AMF_OBJECT_END);
- *data = out.bytes.array;
- *size = out.bytes.num;
- }
- void flv_additional_meta_data(obs_output_t *context, uint8_t **data,
- size_t *size)
- {
- UNUSED_PARAMETER(context);
- struct array_output_data out;
- struct serializer s;
- uint8_t *meta_data = NULL;
- size_t meta_data_size;
- flv_build_additional_meta_data(&meta_data, &meta_data_size);
- array_output_serializer_init(&s, &out);
- s_w8(&s, RTMP_PACKET_TYPE_INFO); //18
- s_wb24(&s, (uint32_t)meta_data_size);
- s_wb32(&s, 0);
- s_wb24(&s, 0);
- s_write(&s, meta_data, meta_data_size);
- bfree(meta_data);
- s_wb32(&s, (uint32_t)serializer_get_pos(&s) - 1);
- *data = out.bytes.array;
- *size = out.bytes.num;
- }
- static inline void s_u29(struct serializer *s, uint32_t val)
- {
- if (val <= 0x7F) {
- s_w8(s, val);
- } else if (val <= 0x3FFF) {
- s_w8(s, 0x80 | (val >> 7));
- s_w8(s, val & 0x7F);
- } else if (val <= 0x1FFFFF) {
- s_w8(s, 0x80 | (val >> 14));
- s_w8(s, 0x80 | ((val >> 7) & 0x7F));
- s_w8(s, val & 0x7F);
- } else {
- s_w8(s, 0x80 | (val >> 22));
- s_w8(s, 0x80 | ((val >> 15) & 0x7F));
- s_w8(s, 0x80 | ((val >> 8) & 0x7F));
- s_w8(s, val & 0xFF);
- }
- }
- static inline void s_u29b_value(struct serializer *s, uint32_t val)
- {
- s_u29(s, 1 | ((val & 0xFFFFFFF) << 1));
- }
- static void flv_build_additional_audio(uint8_t **data, size_t *size,
- struct encoder_packet *packet,
- bool is_header, size_t index)
- {
- UNUSED_PARAMETER(index);
- struct array_output_data out;
- struct serializer s;
- array_output_serializer_init(&s, &out);
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "additionalMedia");
- s_w8(&s, AMF_OBJECT);
- {
- s_amf_conststring(&s, "id");
- s_w8(&s, AMF_STRING);
- s_amf_conststring(&s, "stream0");
- /* ----- */
- s_amf_conststring(&s, "media");
- s_w8(&s, AMF_AVMPLUS);
- s_w8(&s, AMF3_BYTE_ARRAY);
- s_u29b_value(&s, (uint32_t)packet->size + 2);
- s_w8(&s, 0xaf);
- s_w8(&s, is_header ? 0 : 1);
- s_write(&s, packet->data, packet->size);
- }
- s_wb24(&s, AMF_OBJECT_END);
- *data = out.bytes.array;
- *size = out.bytes.num;
- }
- static void flv_additional_audio(struct serializer *s, int32_t dts_offset,
- struct encoder_packet *packet, bool is_header,
- size_t index)
- {
- int32_t time_ms = get_ms_time(packet, packet->dts) - dts_offset;
- uint8_t *data;
- size_t size;
- if (!packet->data || !packet->size)
- return;
- flv_build_additional_audio(&data, &size, packet, is_header, index);
- s_w8(s, RTMP_PACKET_TYPE_INFO); //18
- #ifdef DEBUG_TIMESTAMPS
- blog(LOG_DEBUG, "Audio2: %lu", time_ms);
- if (last_time > time_ms)
- blog(LOG_DEBUG, "Non-monotonic");
- last_time = time_ms;
- #endif
- s_wb24(s, (uint32_t)size);
- s_wb24(s, (uint32_t)time_ms);
- s_w8(s, (time_ms >> 24) & 0x7F);
- s_wb24(s, 0);
- serialize(s, data, size);
- bfree(data);
- s_wb32(s, (uint32_t)serializer_get_pos(s) - 1);
- }
- void flv_additional_packet_mux(struct encoder_packet *packet,
- int32_t dts_offset, uint8_t **data, size_t *size,
- bool is_header, size_t index)
- {
- struct array_output_data out;
- struct serializer s;
- array_output_serializer_init(&s, &out);
- if (packet->type == OBS_ENCODER_VIDEO) {
- //currently unsupported
- bcrash("who said you could output an additional video packet?");
- } else {
- flv_additional_audio(&s, dts_offset, packet, is_header, index);
- }
- *data = out.bytes.array;
- *size = out.bytes.num;
- }
|