comparison avcodec.h @ 7825:8d5e06d2eed8 libavcodec

Drop deprecated SAMPLE_FMT_S24.
author michael
date Mon, 08 Sep 2008 15:24:16 +0000
parents 635ed2559262
children ddbb45888e46
comparison
equal deleted inserted replaced
7824:635ed2559262 7825:8d5e06d2eed8
337 */ 337 */
338 enum SampleFormat { 338 enum SampleFormat {
339 SAMPLE_FMT_NONE = -1, 339 SAMPLE_FMT_NONE = -1,
340 SAMPLE_FMT_U8, ///< unsigned 8 bits 340 SAMPLE_FMT_U8, ///< unsigned 8 bits
341 SAMPLE_FMT_S16, ///< signed 16 bits 341 SAMPLE_FMT_S16, ///< signed 16 bits
342 SAMPLE_FMT_S24, ///< signed 24 bits @deprecated Deprecated in favor of SAMPLE_FMT_S32
343 SAMPLE_FMT_S32, ///< signed 32 bits 342 SAMPLE_FMT_S32, ///< signed 32 bits
344 SAMPLE_FMT_FLT, ///< float 343 SAMPLE_FMT_FLT, ///< float
345 SAMPLE_FMT_DBL, ///< double 344 SAMPLE_FMT_DBL, ///< double
346 SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcodec 345 SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcodec
347 }; 346 };