summaryrefslogtreecommitdiff
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-07-28 12:30:19 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-08-04 00:23:00 +0200
commit4ce0a94656591eb2a6f567e0c6778e2cc96c17b0 (patch)
tree460714e93f5249da2daf62dec5f0386e4bd559a7 /libswscale/swscale.h
parent99c7b516414e76c90446a865ca5a02df3117f694 (diff)
lsws: remove deprecated and unused stuff after the 0->1 major bump
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index a4b3a4807f..f84e8798be 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -239,15 +239,6 @@ int sws_scale(struct SwsContext *c, const uint8_t* const srcSlice[],
const int srcStride[], int srcSliceY, int srcSliceH,
uint8_t* const dst[], const int dstStride[]);
-#if LIBSWSCALE_VERSION_MAJOR < 1
-/**
- * @deprecated Use sws_scale() instead.
- */
-int sws_scale_ordered(struct SwsContext *context, const uint8_t* const src[],
- int srcStride[], int srcSliceY, int srcSliceH,
- uint8_t* dst[], int dstStride[]) attribute_deprecated;
-#endif
-
/**
* @param inv_table the yuv2rgb coefficients, normally ff_yuv2rgb_coeffs[x]
* @return -1 if not supported
@@ -306,13 +297,6 @@ void sws_shiftVec(SwsVector *a, int shift);
*/
SwsVector *sws_cloneVec(SwsVector *a);
-#if LIBSWSCALE_VERSION_MAJOR < 1
-/**
- * @deprecated Use sws_printVec2() instead.
- */
-attribute_deprecated void sws_printVec(SwsVector *a);
-#endif
-
/**
* Prints with av_log() a textual representation of the vector a
* if log_level <= av_log_level.