The vidstab library added support in Nov 2020 for writing/reading
the transforms data in binary in addition to ASCII. The library default
was changed to binary format but no changes were made to the AVfilters
resulting in data file for writing or reading being always opened as text.
This effectively broke the filters.
Option added to vidstabdetect to specify file format and open files in
both filters with the correct attributes.
{"show","0: draw nothing; 1,2: show fields and transforms",OFFSETC(show),AV_OPT_TYPE_INT,{.i64=0},0,2,FLAGS},
{"tripod","virtual tripod mode (if >0): motion is compared to a reference"
" reference frame (frame # is the value)",OFFSETC(virtualTripod),AV_OPT_TYPE_INT,{.i64=0},0,INT_MAX,FLAGS},
#ifdef LIBVIDSTAB_FILE_FORMAT_VERSION
{"fileformat","transforms data file format",OFFSET(fileformat),AV_OPT_TYPE_INT,{.i64=BINARY_SERIALIZATION_MODE},ASCII_SERIALIZATION_MODE,BINARY_SERIALIZATION_MODE,FLAGS,"file_format"},