/* * ---------------------------------------------------------------- * * ITA core libs * (c) Copyright Institute of Technical Acoustics (ITA) * RWTH Aachen University, Germany, 2015-2017 * * ---------------------------------------------------------------- * ____ __________ _______ * // / //__ ___/ // _ | * // / // / // /_| | * // / // / // ___ | * //__/ //__/ //__/ |__| * * ---------------------------------------------------------------- * */ #ifndef INCLUDE_WATCHER_ITA_STREAM_INFO #define INCLUDE_WATCHER_ITA_STREAM_INFO #include //! Time code information for audio streams class ITAStreamInfo { public: uint64_t nSamples; //!< Number of samples processed double dTimecode; //!< Time code inline ITAStreamInfo() : nSamples( 0 ) , dTimecode( 0 ) {}; virtual ~ITAStreamInfo() {}; }; #endif // INCLUDE_WATCHER_ITA_STREAM_INFO