Thread: Vapoursynth
View Single Post
Old 11th February 2021, 09:28   #4291  |  Link
feisty2
I'm Siri
 
feisty2's Avatar
 
Join Date: Oct 2012
Location: void
Posts: 2,633
Quote:
Code:
char messages[] = vsapi->propGetData(in, "name", 0, NULL);
apparently you're not very familiar with C constructs, you cannot initialize a char array from a pointer (note that string literals are of type const char[N], not const char*, an array type can decay to a pointer type, but arrays and pointers are distinct entities). it's better if you just avoid C stuff all together.
feisty2 is offline   Reply With Quote