xbmc
EdlEdit.h
1 /*
2  * Copyright (C) 2019 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 namespace EDL
12 {
13 
14 constexpr int EDL_ACTION_NONE = -1;
15 
16 enum class Action
17 {
18  CUT = 0,
19  MUTE = 1,
20  SCENE = 2,
21  COMM_BREAK = 3
22 };
23 
24 struct Edit
25 {
26  int start = 0; // ms
27  int end = 0; // ms
28  Action action = Action::CUT;
29 };
30 
31 } // namespace EDL
Definition: EdlEdit.h:24
Definition: EdlEdit.h:11