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.
26 lines
970 B
C#
26 lines
970 B
C#
// <copyright file="HlsAudioSeekStrategy.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Model.Configuration;
|
|
/// <summary>
|
|
/// An enum representing the options to seek the input audio stream when
|
|
/// transcoding HLS segments.
|
|
/// </summary>
|
|
public enum HlsAudioSeekStrategy
|
|
{
|
|
/// <summary>
|
|
/// If the video stream is transcoded and the audio stream is copied,
|
|
/// seek the video stream to the same keyframe as the audio stream. The
|
|
/// resulting timestamps in the output streams may be inaccurate.
|
|
/// </summary>
|
|
DisableAccurateSeek = 0,
|
|
|
|
/// <summary>
|
|
/// Prevent audio streams from being copied if the video stream is transcoded.
|
|
/// The resulting timestamps will be accurate, but additional audio transcoding
|
|
/// overhead will be incurred.
|
|
/// </summary>
|
|
TranscodeAudio = 1,
|
|
}
|