mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-29 20:08:27 +01:00
Comments and cleanup. ALso updated ffmpeg + ffprobe
This commit is contained in:
parent
4068047845
commit
2454b72c93
@@ -1,14 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Configuration;
|
||||
using System.IO;
|
||||
using System.Configuration;
|
||||
using System.Reflection;
|
||||
|
||||
namespace MediaBrowser.Common.Configuration
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides a base class to hold common application paths used by both the UI and Server.
|
||||
/// This can be subclassed to add application-specific paths.
|
||||
/// </summary>
|
||||
public abstract class BaseApplicationPaths
|
||||
{
|
||||
private string _programDataPath;
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Common.Events
|
||||
{
|
||||
public class GenericItemEventArgs<TItemType> : EventArgs
|
||||
{
|
||||
public TItemType Item { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -67,7 +67,6 @@
|
||||
<Compile Include="Configuration\BaseApplicationConfiguration.cs" />
|
||||
<Compile Include="Configuration\BaseApplicationPaths.cs" />
|
||||
<Compile Include="Drawing\DrawingUtils.cs" />
|
||||
<Compile Include="Events\GenericItemEventArgs.cs" />
|
||||
<Compile Include="Net\Handlers\StaticFileHandler.cs" />
|
||||
<Compile Include="Net\MimeTypes.cs" />
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
|
||||
@@ -4,7 +4,7 @@ namespace MediaBrowser.Common.Serialization
|
||||
{
|
||||
/// <summary>
|
||||
/// This adds support for ServiceStack's proprietary JSV output format.
|
||||
/// It's based on Json but the serializer performs faster and output runs about 10% smaller
|
||||
/// It's a hybrid of Json and Csv but the serializer performs about 25% faster and output runs about 10% smaller
|
||||
/// http://www.servicestack.net/benchmarks/NorthwindDatabaseRowsSerialization.100000-times.2010-08-17.html
|
||||
/// </summary>
|
||||
public static class JsvSerializer
|
||||
|
||||
Reference in New Issue
Block a user