af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
// <copyright file="TranscodeReason.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using global::System;
|
|
|
|
namespace MediaBrowser.Model.Session;
|
|
[Flags]
|
|
public enum TranscodeReason
|
|
{
|
|
// Primary
|
|
ContainerNotSupported = 1 << 0,
|
|
VideoCodecNotSupported = 1 << 1,
|
|
AudioCodecNotSupported = 1 << 2,
|
|
SubtitleCodecNotSupported = 1 << 3,
|
|
AudioIsExternal = 1 << 4,
|
|
SecondaryAudioNotSupported = 1 << 5,
|
|
StreamCountExceedsLimit = 1 << 26,
|
|
|
|
// Video Constraints
|
|
VideoProfileNotSupported = 1 << 6,
|
|
VideoRangeTypeNotSupported = 1 << 24,
|
|
VideoCodecTagNotSupported = 1 << 25,
|
|
VideoLevelNotSupported = 1 << 7,
|
|
VideoResolutionNotSupported = 1 << 8,
|
|
VideoBitDepthNotSupported = 1 << 9,
|
|
VideoFramerateNotSupported = 1 << 10,
|
|
RefFramesNotSupported = 1 << 11,
|
|
AnamorphicVideoNotSupported = 1 << 12,
|
|
InterlacedVideoNotSupported = 1 << 13,
|
|
|
|
// Audio Constraints
|
|
AudioChannelsNotSupported = 1 << 14,
|
|
AudioProfileNotSupported = 1 << 15,
|
|
AudioSampleRateNotSupported = 1 << 16,
|
|
AudioBitDepthNotSupported = 1 << 17,
|
|
|
|
// Bitrate Constraints
|
|
ContainerBitrateExceedsLimit = 1 << 18,
|
|
VideoBitrateNotSupported = 1 << 19,
|
|
AudioBitrateNotSupported = 1 << 20,
|
|
|
|
// Errors
|
|
UnknownVideoStreamInfo = 1 << 21,
|
|
UnknownAudioStreamInfo = 1 << 22,
|
|
DirectPlayError = 1 << 23,
|
|
}
|