mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
Move IO code to separate folder
This commit is contained in:
parent
e13ccfe854
commit
ca1a8ced48
@ -19,6 +19,7 @@ using Jellyfin.Data.Enums;
|
||||
using Jellyfin.Data.Events;
|
||||
using Jellyfin.Extensions;
|
||||
using Jellyfin.LiveTv.Configuration;
|
||||
using Jellyfin.LiveTv.IO;
|
||||
using Jellyfin.LiveTv.Timers;
|
||||
using MediaBrowser.Common.Configuration;
|
||||
using MediaBrowser.Common.Extensions;
|
||||
|
@ -1,5 +1,6 @@
|
||||
using Jellyfin.LiveTv.Channels;
|
||||
using Jellyfin.LiveTv.Guide;
|
||||
using Jellyfin.LiveTv.IO;
|
||||
using Jellyfin.LiveTv.Listings;
|
||||
using Jellyfin.LiveTv.Timers;
|
||||
using Jellyfin.LiveTv.TunerHosts;
|
||||
|
@ -12,7 +12,7 @@ using MediaBrowser.Model.Dto;
|
||||
using MediaBrowser.Model.IO;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Jellyfin.LiveTv.EmbyTV
|
||||
namespace Jellyfin.LiveTv.IO
|
||||
{
|
||||
public sealed class DirectRecorder : IRecorder
|
||||
{
|
@ -23,7 +23,7 @@ using MediaBrowser.Model.Dto;
|
||||
using MediaBrowser.Model.IO;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Jellyfin.LiveTv.EmbyTV
|
||||
namespace Jellyfin.LiveTv.IO
|
||||
{
|
||||
public class EncodedRecorder : IRecorder
|
||||
{
|
@ -11,7 +11,7 @@ using System.Threading.Tasks;
|
||||
using MediaBrowser.Controller.Library;
|
||||
using MediaBrowser.Model.Dto;
|
||||
|
||||
namespace Jellyfin.LiveTv
|
||||
namespace Jellyfin.LiveTv.IO
|
||||
{
|
||||
public sealed class ExclusiveLiveStream : ILiveStream
|
||||
{
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||
using MediaBrowser.Controller.Library;
|
||||
using MediaBrowser.Model.Dto;
|
||||
|
||||
namespace Jellyfin.LiveTv.EmbyTV
|
||||
namespace Jellyfin.LiveTv.IO
|
||||
{
|
||||
public interface IRecorder : IDisposable
|
||||
{
|
@ -7,7 +7,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using MediaBrowser.Model.IO;
|
||||
|
||||
namespace Jellyfin.LiveTv
|
||||
namespace Jellyfin.LiveTv.IO
|
||||
{
|
||||
public class StreamHelper : IStreamHelper
|
||||
{
|
@ -12,6 +12,7 @@ using Jellyfin.Data.Entities;
|
||||
using Jellyfin.Data.Enums;
|
||||
using Jellyfin.Data.Events;
|
||||
using Jellyfin.LiveTv.Configuration;
|
||||
using Jellyfin.LiveTv.IO;
|
||||
using MediaBrowser.Common.Extensions;
|
||||
using MediaBrowser.Controller.Channels;
|
||||
using MediaBrowser.Controller.Configuration;
|
||||
|
Loading…
Reference in New Issue
Block a user