From 4c3251ec645c8b71820dab7e51e612e5919d4e75 Mon Sep 17 00:00:00 2001 From: manuel Date: Sun, 23 Jul 2017 16:59:43 +0200 Subject: sync with upstream --- .../kodi-addon-dev-kit/include/kodi/StreamCodec.h | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h (limited to 'xbmc/addons/kodi-addon-dev-kit/include/kodi/StreamCodec.h') 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 @@ +#pragma once +/* + * Copyright (C) 2017 Team Kodi + * http://kodi.tv + * + * This Program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This Program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Kodi; see the file COPYING. If not, see + * . + * + */ + +enum STREAMCODEC_PROFILE +{ + CodecProfileUnknown = 0, + CodecProfileNotNeeded, + H264CodecProfileBaseline, + H264CodecProfileMain, + H264CodecProfileExtended, + H264CodecProfileHigh, + H264CodecProfileHigh10, + H264CodecProfileHigh422, + H264CodecProfileHigh444Predictive +}; -- cgit v1.2.3