summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-05-13 12:50:38 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-05-13 13:39:49 +0200
commit9d269301f017657c3ae2e95a411317640acd39a8 (patch)
treeebd0eeb6f6f77f9c57abb48fae58431d790a9128 /libswscale
parentb8ed4930618b170de57a9086e1e9892216454684 (diff)
swscale/tests/swscale: Lengthen pixfmt name buffer to 21 bytes
Some formats use longer names than 12. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/tests/swscale.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/tests/swscale.c b/libswscale/tests/swscale.c
index cb731f6211..19878a7877 100644
--- a/libswscale/tests/swscale.c
+++ b/libswscale/tests/swscale.c
@@ -312,22 +312,22 @@ static int fileTest(const uint8_t * const ref[4], int refStride[4],
while (fgets(buf, sizeof(buf), fp)) {
struct Results r;
enum AVPixelFormat srcFormat;
- char srcStr[13];
+ char srcStr[21];
int srcW = 0, srcH = 0;
enum AVPixelFormat dstFormat;
- char dstStr[13];
+ char dstStr[21];
int dstW = 0, dstH = 0;
int flags;
int ret;
ret = sscanf(buf,
- " %12s %dx%d -> %12s %dx%d flags=%d CRC=%x"
+ " %20s %dx%d -> %20s %dx%d flags=%d CRC=%x"
" SSD=%"SCNu64 ", %"SCNu64 ", %"SCNu64 ", %"SCNu64 "\n",
srcStr, &srcW, &srcH, dstStr, &dstW, &dstH,
&flags, &r.crc, &r.ssdY, &r.ssdU, &r.ssdV, &r.ssdA);
if (ret != 12) {
srcStr[0] = dstStr[0] = 0;
- ret = sscanf(buf, "%12s -> %12s\n", srcStr, dstStr);
+ ret = sscanf(buf, "%20s -> %20s\n", srcStr, dstStr);
}
srcFormat = av_get_pix_fmt(srcStr);