You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In v2.2.0 of kvazaar lib the struct roi inside kvz_config doesn't have an element of width or height; but there is a struct roi with those elements inside struct kvz_picture
So if you try to compile gst-kvazaar with the latest version you get compile errors:
../src/gstkvazaarenc.c: In function ‘gst_kvazaar_enc_init_encoder’:
../src/gstkvazaarenc.c:1240:32: error: ‘struct <anonymous>’ has no member named ‘width’
encoder->kvazaarconfig->roi.width = encoder->roi_width;
^
../src/gstkvazaarenc.c:1241:32: error: ‘struct <anonymous>’ has no member named ‘height’
encoder->kvazaarconfig->roi.height = encoder->roi_height;
^
../src/gstkvazaarenc.c:1242:32: error: ‘struct <anonymous>’ has no member named ‘dqps’
encoder->kvazaarconfig->roi.dqps = encoder->dqps;
The text was updated successfully, but these errors were encountered:
In v2.2.0 of kvazaar lib the
struct roi
insidekvz_config
doesn't have an element ofwidth
orheight
; but there is astruct roi
with those elements insidestruct kvz_picture
So if you try to compile
gst-kvazaar
with the latest version you get compile errors:The text was updated successfully, but these errors were encountered: