RandolphWang
RandolphWang
I still don't think it is MediaCodec bug, it may scrcpy enter some infinite loop, and in some unexpect case (unplug USB cable) scrcpy didn't stop dequeueoutputbuffer and queueinputbuffer. May...
i am not sure your logic, but I guess it may caused by outputBufferId == INFO_TRY_AGAIN_LATER == -1 then in you logic, your will never release if (outputBufferId >= 0)...
hi, Romain I can 100% reproduce this issue. both on unbuntu and windows in v1.24 and if I kill -9 all com.genymobile.scrcpy.Server related process, the ION will decrease to normal...
hi, Romain may you help to give a debug version, many of my colleagues still like to use scrcpy, Many thanks! BRs Ran
hi,Romain my colleague find that it may caused by our unplug usb event USB_STATE=DISCONNECTED was not sent out. So i still have a question that does com.genymobile.scrcpy.Server or com.genymobile.scrcpy.CleanUp will...
thanks Romain! so does scrcpy-server register an exit, to notify usb process to kill itself when unplug? I am wondering if any other app need to do the something. BRs...
hi, Romain may you tell us how USB disconnections kills the scrcpy-server process? many thanks. BRs Ran
and is following patch can be a workaround? ``` diff --git a/qpoases_catkin/qpOASES/src/QProblem.cpp b/qpoases_catkin/qpOASES/src/QProblem.cpp index 8ea39e1c..a53878b5 100644 --- a/qpoases_catkin/qpOASES/src/QProblem.cpp +++ b/qpoases_catkin/qpOASES/src/QProblem.cpp @@ -2880,7 +2880,7 @@ returnValue QProblem::addConstraint( int_t number, SubjectToStatus C_status,...
Thanks Andreas! May it caused by this kind of mistake? - Eigen::Matrix encoder_obs_history = encoder_obs_.replicate(1, NumObsHistoryEncoder); + Eigen::Matrix encoder_obs_history = encoder_obs_.replicate(NumObsHistoryEncoder, 1); but I am not quite understand why the...