2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.PlayJ
|
2025-09-26 11:57:18 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Data referred to by <see cref="AudioHeaderV1.UnknownOffset3"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed class UnknownBlock3
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Unknown data
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
public byte[] Data { get; set; } = [];
|
2025-09-26 11:57:18 -04:00
|
|
|
|
|
|
|
|
// Notes about Data:
|
|
|
|
|
// - This may be where the encrypted audio samples live
|
|
|
|
|
// - It is also possible that it's where the ad data lives and samples follow
|
|
|
|
|
// + See V2 for example of why this would be the case
|
|
|
|
|
}
|
2025-10-30 20:44:16 -04:00
|
|
|
}
|