aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/transcoding/ended-transcoding.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/transcoding/ended-transcoding.ts')
-rw-r--r--server/lib/transcoding/ended-transcoding.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/server/lib/transcoding/ended-transcoding.ts b/server/lib/transcoding/ended-transcoding.ts
deleted file mode 100644
index d31674ede..000000000
--- a/server/lib/transcoding/ended-transcoding.ts
+++ /dev/null
@@ -1,18 +0,0 @@
1import { retryTransactionWrapper } from '@server/helpers/database-utils'
2import { VideoJobInfoModel } from '@server/models/video/video-job-info'
3import { MVideo } from '@server/types/models'
4import { moveToNextState } from '../video-state'
5
6export async function onTranscodingEnded (options: {
7 video: MVideo
8 isNewVideo: boolean
9 moveVideoToNextState: boolean
10}) {
11 const { video, isNewVideo, moveVideoToNextState } = options
12
13 await VideoJobInfoModel.decrease(video.uuid, 'pendingTranscode')
14
15 if (moveVideoToNextState) {
16 await retryTransactionWrapper(moveToNextState, { video, isNewVideo })
17 }
18}