Skip to content

Commit

Permalink
enable VideoWriter class for java
Browse files Browse the repository at this point in the history
fixing fourcc
  • Loading branch information
berak committed Aug 27, 2015
1 parent ca5e07d commit a11ff87
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/java/generator/gen_java.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
class_ignore_list = (
#core
"FileNode", "FileStorage", "KDTree", "KeyPoint", "DMatch",
#videoio
"VideoWriter",
)

const_ignore_list = (
Expand Down Expand Up @@ -186,6 +184,7 @@
"env" : { "j_type" : "", "jn_type" : "", "jni_type" : "JNIEnv*"},
"cls" : { "j_type" : "", "jn_type" : "", "jni_type" : "jclass"},
"bool" : { "j_type" : "boolean", "jn_type" : "boolean", "jni_type" : "jboolean", "suffix" : "Z" },
"char" : { "j_type" : "char", "jn_type" : "char", "jni_type" : "jchar", "suffix" : "C" },
"int" : { "j_type" : "int", "jn_type" : "int", "jni_type" : "jint", "suffix" : "I" },
"long" : { "j_type" : "int", "jn_type" : "int", "jni_type" : "jint", "suffix" : "I" },
"float" : { "j_type" : "float", "jn_type" : "float", "jni_type" : "jfloat", "suffix" : "F" },
Expand Down

0 comments on commit a11ff87

Please sign in to comment.