comparison avcodec.h @ 7612:1302ec81afc0 libavcodec

Add SAMPLE_FMT_DBL.
author pross
date Tue, 19 Aug 2008 10:36:30 +0000
parents 87f68803080a
children ff395fe35161
comparison
equal deleted inserted replaced
7611:a909361cdfc4 7612:1302ec81afc0
28 28
29 29
30 #include "libavutil/avutil.h" 30 #include "libavutil/avutil.h"
31 31
32 #define LIBAVCODEC_VERSION_MAJOR 51 32 #define LIBAVCODEC_VERSION_MAJOR 51
33 #define LIBAVCODEC_VERSION_MINOR 64 33 #define LIBAVCODEC_VERSION_MINOR 65
34 #define LIBAVCODEC_VERSION_MICRO 0 34 #define LIBAVCODEC_VERSION_MICRO 0
35 35
36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ 36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
37 LIBAVCODEC_VERSION_MINOR, \ 37 LIBAVCODEC_VERSION_MINOR, \
38 LIBAVCODEC_VERSION_MICRO) 38 LIBAVCODEC_VERSION_MICRO)
346 SAMPLE_FMT_U8, ///< unsigned 8 bits 346 SAMPLE_FMT_U8, ///< unsigned 8 bits
347 SAMPLE_FMT_S16, ///< signed 16 bits 347 SAMPLE_FMT_S16, ///< signed 16 bits
348 SAMPLE_FMT_S24, ///< signed 24 bits @deprecated Deprecated in favor of SAMPLE_FMT_S32 348 SAMPLE_FMT_S24, ///< signed 24 bits @deprecated Deprecated in favor of SAMPLE_FMT_S32
349 SAMPLE_FMT_S32, ///< signed 32 bits 349 SAMPLE_FMT_S32, ///< signed 32 bits
350 SAMPLE_FMT_FLT, ///< float 350 SAMPLE_FMT_FLT, ///< float
351 SAMPLE_FMT_DBL, ///< double
351 SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcodec 352 SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcodec
352 }; 353 };
353 354
354 /* in bytes */ 355 /* in bytes */
355 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio 356 #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32bit audio