[FFmpeg-cvslog] r9568 - trunk/libavcodec/avcodec.h
mru
subversion
Tue Jul 10 00:15:07 CEST 2007
Author: mru
Date: Tue Jul 10 00:15:07 2007
New Revision: 9568
Log:
avoid deprecation warnings for ImgReSampleContext from avcodec.h
Modified:
trunk/libavcodec/avcodec.h
Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h (original)
+++ trunk/libavcodec/avcodec.h Tue Jul 10 00:15:07 2007
@@ -2223,11 +2223,6 @@ void av_resample_close(struct AVResample
/**
* @deprecated Use the software scaler (swscale) instead.
*/
-struct ImgReSampleContext attribute_deprecated;
-
-/**
- * @deprecated Use the software scaler (swscale) instead.
- */
typedef struct ImgReSampleContext ImgReSampleContext attribute_deprecated;
/**
@@ -2249,13 +2244,13 @@ attribute_deprecated ImgReSampleContext
/**
* @deprecated Use the software scaler (swscale) instead.
*/
-attribute_deprecated void img_resample(ImgReSampleContext *s,
+attribute_deprecated void img_resample(struct ImgReSampleContext *s,
AVPicture *output, const AVPicture *input);
/**
* @deprecated Use the software scaler (swscale) instead.
*/
-attribute_deprecated void img_resample_close(ImgReSampleContext *s);
+attribute_deprecated void img_resample_close(struct ImgReSampleContext *s);
#endif
More information about the ffmpeg-cvslog
mailing list