Skip to content

Commit

Permalink
fixup! obs-outputs: Support ertmp-style multitrack for flv
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Foster <[email protected]>
  • Loading branch information
palana and RytoEX authored Apr 19, 2024
1 parent 272a302 commit d7cd61b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/obs-outputs/flv-output.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ struct flv_output {
/* clang-format off */

/**
* Chromaticity coordinates of the source primaries.
* Chromaticity coordinates of the source primaries
* These values match the ones defined by ISO/IEC 23091-2_2019 subclause 8.1 and ITU-T H.273.
*/
enum OBSColorPrimaries {
Expand All @@ -87,7 +87,7 @@ enum OBSColorPrimaries {
};

/**
* Color Transfer Characteristic.
* Color Transfer Characteristic
* These values match the ones defined by ISO/IEC 23091-2_2019 subclause 8.2.
*/
enum OBSColorTransferCharacteristic {
Expand Down Expand Up @@ -116,7 +116,7 @@ enum OBSColorTransferCharacteristic {
};

/**
* YUV colorspace type.
* YUV Colorspace Type
* These values match the ones defined by ISO/IEC 23091-2_2019 subclause 8.3.
*/
enum OBSColorSpace {
Expand Down Expand Up @@ -279,7 +279,7 @@ static bool write_video_header(struct flv_output *stream, size_t idx)

case CODEC_H264:
packet.size = obs_parse_avc_header(&packet.data, header, size);
// Always send H264 on track 0 as old style for compat
// Always send H.264 on track 0 as old style for compatibility.
if (idx == 0) {
write_packet(stream, &packet, true);
} else {
Expand Down

0 comments on commit d7cd61b

Please sign in to comment.