mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 05:02:36 +01:00
Fix one compile warning
This commit is contained in:
parent
394b84d770
commit
976f1a2168
@ -2,16 +2,15 @@
|
||||
|
||||
namespace Nikse.SubtitleEdit.Core.ContainerFormats
|
||||
{
|
||||
internal struct AviStreamHeader
|
||||
internal class AviStreamHeader
|
||||
{
|
||||
public int FccType; // stream type codes
|
||||
public int FccHandler;
|
||||
public short Language;
|
||||
public int Scale;
|
||||
public int Rate; // Rate/Scale is stream tick rate in ticks/s
|
||||
public int Start;
|
||||
public int Length;
|
||||
public int SampleSize;
|
||||
public int FccType { get; set; } // stream type codes
|
||||
public int FccHandler { get; set; }
|
||||
public int Scale { get; set; }
|
||||
public int Rate { get; set; } // Rate/Scale is stream tick rate in ticks/s
|
||||
public int Start { get; set; }
|
||||
public int Length { get; set; }
|
||||
public int SampleSize { get; set; }
|
||||
}
|
||||
|
||||
internal static class AviRiffData
|
||||
|
Loading…
Reference in New Issue
Block a user