OSDN Git Service

lavfi/opencv: isgraph -> av_isgraph.
authorClément Bœsch <ubitux@gmail.com>
Sun, 3 Mar 2013 21:06:48 +0000 (22:06 +0100)
committerClément Bœsch <ubitux@gmail.com>
Sun, 3 Mar 2013 21:06:48 +0000 (22:06 +0100)
Fix build after 88d55b8.

libavfilter/vf_libopencv.c

index 1b8a5dc..2d26b38 100644 (file)
@@ -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);