add tonemap algorithm setting to ffmpeg profile (#2039)

This commit is contained in:
Jason Dove
2025-06-15 00:38:37 +00:00
committed by GitHub
parent 69a1e718df
commit ea46a7a5ca
31 changed files with 11771 additions and 23 deletions
@@ -0,0 +1,29 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Sqlite.Migrations
{
/// <inheritdoc />
public partial class Add_FFmpegProfile_TonemapAlgorithm : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "TonemapAlgorithm",
table: "FFmpegProfile",
type: "INTEGER",
nullable: false,
defaultValue: 0);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "TonemapAlgorithm",
table: "FFmpegProfile");
}
}
}