Commit 14e240cb authored by Clément Bœsch's avatar Clément Bœsch

lavfi/opencv: isgraph -> av_isgraph.

Fix build after 88d55b82.
parent 88d55b82
...@@ -177,7 +177,7 @@ static int read_shape_from_file(int *cols, int *rows, int **values, const char * ...@@ -177,7 +177,7 @@ static int read_shape_from_file(int *cols, int *rows, int **values, const char *
p++; p++;
break; break;
} else } else
(*values)[*cols*i + j] = !!isgraph(*(p++)); (*values)[*cols*i + j] = !!av_isgraph(*(p++));
} }
} }
av_file_unmap(buf, size); av_file_unmap(buf, size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment