[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / cores / AudioEngine / Utils / AEStreamData.h
bloba0624f46bf8ad55dbc3b2bf75adf85fa50977766
1 /*
2 * Copyright (C) 2010-2018 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 /**
12 * Bit options to pass to IAE::MakeStream
14 enum AEStreamOptions
16 AESTREAM_FORCE_RESAMPLE = 1 << 0, /* force resample even if rates match */
17 AESTREAM_PAUSED = 1 << 1, /* create the stream paused */
18 AESTREAM_AUTOSTART = 1 << 2, /* autostart the stream when enough data is buffered */