summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h')
-rw-r--r--xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h b/xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h
new file mode 100644
index 0000000..85de3ec
--- /dev/null
+++ b/xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h
@@ -0,0 +1,33 @@
1#pragma once
2/*
3 * Copyright (C) 2017 Team Kodi
4 * http://kodi.tv
5 *
6 * This Program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * This Program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with Kodi; see the file COPYING. If not, see
18 * <http://www.gnu.org/licenses/>.
19 *
20 */
21
22enum STREAMCODEC_PROFILE
23{
24 CodecProfileUnknown = 0,
25 CodecProfileNotNeeded,
26 H264CodecProfileBaseline,
27 H264CodecProfileMain,
28 H264CodecProfileExtended,
29 H264CodecProfileHigh,
30 H264CodecProfileHigh10,
31 H264CodecProfileHigh422,
32 H264CodecProfileHigh444Predictive
33};