[WASAPI] set stream audio category
[xbmc.git] / xbmc / cores / EdlEdit.h
blob74ad3521beb86be6b8a8a4992c20aca3fc48ff82
1 /*
2 * Copyright (C) 2019 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include <chrono>
13 namespace EDL
16 constexpr int EDL_ACTION_NONE = -1;
18 enum class Action
20 CUT = 0,
21 MUTE = 1,
22 SCENE = 2,
23 COMM_BREAK = 3
26 struct Edit
28 std::chrono::milliseconds start{0};
29 std::chrono::milliseconds end{0};
30 Action action = Action::CUT;
33 } // namespace EDL