File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
BinaryObjectScanner/FileType Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11using System ;
22using System . IO ;
3+ using SabreTools . Models . AACS ;
34
45namespace BinaryObjectScanner . FileType
56{
@@ -14,8 +15,8 @@ public AACSMediaKeyBlock(SabreTools.Serialization.Wrappers.AACSMediaKeyBlock? wr
1415 /// <inheritdoc/>
1516 public override string ? Detect ( Stream stream , string file , bool includeDebug )
1617 {
17- var record = Array . Find ( _wrapper . Records , r => r . RecordType == SabreTools . Models . AACS . RecordType . TypeAndVersion ) ;
18- if ( record is SabreTools . Models . AACS . TypeAndVersionRecord tavr )
18+ var record = Array . Find ( _wrapper . Records , r => r . RecordType == RecordType . TypeAndVersion ) ;
19+ if ( record is TypeAndVersionRecord tavr )
1920 return $ "AACS { tavr . VersionNumber } ";
2021
2122 return "AACS (Unknown Version)" ;
Original file line number Diff line number Diff line change 11using System . IO ;
2+ using SabreTools . Serialization . Wrappers ;
23
34namespace BinaryObjectScanner . FileType
45{
56 /// <summary>
67 /// PlayJ audio file
78 /// </summary>
8- public class PLJ : DetectableBase < SabreTools . Serialization . Wrappers . PlayJAudioFile >
9+ public class PLJ : DetectableBase < PlayJAudioFile >
910 {
1011 /// <inheritdoc/>
11- public PLJ ( SabreTools . Serialization . Wrappers . PlayJAudioFile ? wrapper ) : base ( wrapper ) { }
12+ public PLJ ( PlayJAudioFile ? wrapper ) : base ( wrapper ) { }
1213
1314 /// <inheritdoc/>
1415 public override string ? Detect ( Stream stream , string file , bool includeDebug )
You can’t perform that action at this time.
0 commit comments