mirror of https://github.com/ErsatzTV/ErsatzTV.git
Browse Source
* wip add qsv extra_hw_frames setting * fix ffmpeg profile editor * update changelogpull/951/head
19 changed files with 4372 additions and 11 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
||||
#nullable disable |
||||
|
||||
namespace ErsatzTV.Infrastructure.Migrations |
||||
{ |
||||
public partial class Add_FFmpegProfileQsvExtraHardwareFrames : Migration |
||||
{ |
||||
protected override void Up(MigrationBuilder migrationBuilder) |
||||
{ |
||||
migrationBuilder.AddColumn<int>( |
||||
name: "QsvExtraHardwareFrames", |
||||
table: "FFmpegProfile", |
||||
type: "INTEGER", |
||||
nullable: true, |
||||
defaultValue: 64); |
||||
} |
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder) |
||||
{ |
||||
migrationBuilder.DropColumn( |
||||
name: "QsvExtraHardwareFrames", |
||||
table: "FFmpegProfile"); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue