summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2017-04-15 14:55:33 +0200
committerLuca Barbato <lu_zero@gentoo.org>2017-04-15 15:37:18 +0200
commit37f573543c4fd7f44339e04d8d15b95118493ddd (patch)
treea4d4471bd889c4e42e5a039bdfdb2d622d7f51ed /libswscale
parentf56fa95cd13f627891a1bfb66bf61b971b9e0238 (diff)
swscale: Convert the check check_image_pointers helper to a macro
Avoid warnings about types mismatch and make the code a little simpler.
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale_unscaled.c37
1 files changed, 15 insertions, 22 deletions
diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c
index d3863bba10..f130ac58cb 100644
--- a/libswscale/swscale_unscaled.c
+++ b/libswscale/swscale_unscaled.c
@@ -1190,20 +1190,19 @@ static void reset_ptr(const uint8_t *src[], enum AVPixelFormat format)
}
}
-static int check_image_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt,
- const int linesizes[4])
-{
- const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
- int i;
-
- for (i = 0; i < 4; i++) {
- int plane = desc->comp[i].plane;
- if (!data[plane] || !linesizes[plane])
- return 0;
- }
-
- return 1;
-}
+#define CHECK_IMAGE_POINTERS(data, pix_fmt, linesizes, msg) \
+ do { \
+ const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); \
+ int i; \
+ \
+ for (i = 0; i < 4; i++) { \
+ int plane = desc->comp[i].plane; \
+ if (!data[plane] || !linesizes[plane]) { \
+ av_log(c, AV_LOG_ERROR, msg); \
+ return 0; \
+ } \
+ } \
+ } while (0)
/**
* swscale wrapper, so we don't need to export the SwsContext.
@@ -1223,14 +1222,8 @@ int attribute_align_arg sws_scale(struct SwsContext *c,
if (srcSliceH == 0)
return 0;
- if (!check_image_pointers(srcSlice, c->srcFormat, srcStride)) {
- av_log(c, AV_LOG_ERROR, "bad src image pointers\n");
- return 0;
- }
- if (!check_image_pointers(dst, c->dstFormat, dstStride)) {
- av_log(c, AV_LOG_ERROR, "bad dst image pointers\n");
- return 0;
- }
+ CHECK_IMAGE_POINTERS(srcSlice, c->srcFormat, srcStride, "bad src image pointers\n");
+ CHECK_IMAGE_POINTERS(dst, c->dstFormat, dstStride, "bad dst image pointers\n");
if (c->sliceDir == 0 && srcSliceY != 0 && srcSliceY + srcSliceH != c->srcH) {
av_log(c, AV_LOG_ERROR, "Slices start in the middle!\n");