diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-03 22:06:48 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-03 22:06:48 +0100 |
commit | 14e240cb4aaa4631fa2e97b9d9bcea12e9066aba (patch) | |
tree | 8b6f5b787b8e900ab1b8336a177116a60078639e /libavfilter/vf_libopencv.c | |
parent | 88d55b827d5ecac94c9ec399d219cc02b46ed694 (diff) | |
download | ffmpeg-14e240cb4aaa4631fa2e97b9d9bcea12e9066aba.tar.gz |
lavfi/opencv: isgraph -> av_isgraph.
Fix build after 88d55b8.
Diffstat (limited to 'libavfilter/vf_libopencv.c')
-rw-r--r-- | libavfilter/vf_libopencv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c index 1b8a5dcc57..2d26b38037 100644 --- a/libavfilter/vf_libopencv.c +++ b/libavfilter/vf_libopencv.c @@ -177,7 +177,7 @@ static int read_shape_from_file(int *cols, int *rows, int **values, const char * p++; break; } else - (*values)[*cols*i + j] = !!isgraph(*(p++)); + (*values)[*cols*i + j] = !!av_isgraph(*(p++)); } } av_file_unmap(buf, size); |