From 97ceb75218742b410ddb6f74d955a80a96162117 Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Mon, 18 Aug 2008 12:03:59 +0000 Subject: [PATCH] Mark SAMPLE_FMT_S24 as deprecated. Originally committed as revision 14823 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d932c79e7c..ac13087afc 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -345,7 +345,7 @@ enum SampleFormat { SAMPLE_FMT_NONE = -1, SAMPLE_FMT_U8, ///< unsigned 8 bits SAMPLE_FMT_S16, ///< signed 16 bits - SAMPLE_FMT_S24, ///< signed 24 bits + SAMPLE_FMT_S24, ///< signed 24 bits @deprecated Deprecated in favor of SAMPLE_FMT_S32 SAMPLE_FMT_S32, ///< signed 32 bits SAMPLE_FMT_FLT, ///< float SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcodec