Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using JT1078.Flv.Extensions;
- using System;
- using System.Buffers.Binary;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JT1078.Flv.Metadata
- {
- public class Amf3Metadata_AudioCodecId : IAmf3Metadata
- {
- public ushort FieldNameLength { get; set; }
- public string FieldName { get; set; } = "audiocodecid";
- public byte DataType { get; set; } = 0x00;
- public object Value { get; set; } = 10d;
-
- public ReadOnlySpan<byte> ToBuffer()
- {
- var b1 = Encoding.ASCII.GetBytes(FieldName);
- Span<byte> tmp = new byte[2 + b1.Length + 1 + 8];
- BinaryPrimitives.WriteUInt16BigEndian(tmp, (ushort)b1.Length);
- b1.CopyTo(tmp.Slice(2));
- tmp[FieldName.Length + 2] = DataType;
- this.WriteDouble(tmp.Slice(b1.Length + 3));
- return tmp;
- }
- }
- }
|