summaryrefslogtreecommitdiff
path: root/libswscale/swscale_internal.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2011-06-05 21:37:59 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2011-06-07 10:03:18 -0400
commitea281753120f55fc3a3102ac54ba291d0ffcd43d (patch)
tree0beddff00d5db9a261facf66f7648058a155efea /libswscale/swscale_internal.h
parentbda9b20fa49975c6b9c39308818e7773eb78b411 (diff)
swscale: remove alp/chr/lumSrcOffset.
They are hacks added to reuse the same scaling function for different formats and they may cause problems when SIMD implementation of the same functions are used along with pure C functions.
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r--libswscale/swscale_internal.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 6aaa843015..a9adb3f07a 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -313,10 +313,6 @@ typedef struct SwsContext {
void (*lumConvertRange)(uint16_t *dst, int width); ///< Color range conversion function for luma plane if needed.
void (*chrConvertRange)(uint16_t *dst1, uint16_t *dst2, int width); ///< Color range conversion function for chroma planes if needed.
- int lumSrcOffset; ///< Offset given to luma src pointers passed to horizontal input functions.
- int chrSrcOffset; ///< Offset given to chroma src pointers passed to horizontal input functions.
- int alpSrcOffset; ///< Offset given to alpha src pointers passed to horizontal input functions.
-
int needs_hcscale; ///< Set if there are chroma planes to be converted.
} SwsContext;