style(producer): apply oxfmt to resolvePresetForLockedEncoder signature

The generic parameter constraint exceeded oxfmt's line width, so the
formatter wraps the type-param list onto its own line. Applies the same
formatting locally that CI's 'Format' job would have produced via
'bun run format:check' — no behavior change.

🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
James
2026-05-15 01:57:08 +00:00
committed by James Russo
parent db62e31d39
commit 38e08e81c7
@@ -301,10 +301,9 @@ function hashChunkOutput(outputPath: string, kind: "file" | "frame-dir"): string
* `getEncoderPreset` itself) shouldn't be able to silently regress
* the contract without a fast-test signal.
*/
export function resolvePresetForLockedEncoder<P extends { codec: "h264" | "h265" | "vp9" | "prores" }>(
basePreset: P,
lockedEncoder: LockedRenderConfig["encoder"],
): P {
export function resolvePresetForLockedEncoder<
P extends { codec: "h264" | "h265" | "vp9" | "prores" },
>(basePreset: P, lockedEncoder: LockedRenderConfig["encoder"]): P {
if (lockedEncoder === "libx265-software") {
return { ...basePreset, codec: "h265" as const };
}