-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lock mutex error #217
Comments
Edit : I've added
Now I don't have the warning anymore, and can successfully call |
I've also tried to set the format to
I'm sending video as NAL decoded with libx264 (annex B enabled), so it should be spec-compliant. |
Agent comment from Leon in Zendesk ticket #120335: °°° |
Ok I didn't know that (I don't think it's written in the docs). So what is DJI-H264 ? It looks like it's NAL H264 concatenated with audio ( // x264 param
x264_param_default_preset(¶m, "ultrafast", NULL)
param.i_bitdepth = 8;
param.i_csp = X264_CSP_I422;
param.b_vfr_input = 0;
param.b_repeat_headers = 1;
param.b_annexb = 1;
param.i_bframe = 0;
param.b_cabac = 0;
param.b_deblocking_filter = 0;
param.i_bframe_adaptive = 0;
param.analyse.b_transform_8x8 = 0;
param.analyse.i_me_method = X264_ME_DIA;
param.analyse.i_trellis = 0;
param.rc.b_mb_tree = 0;
param.i_sync_lookahead = 0;
param.rc.i_lookahead = 0; |
Agent comment from Leon in Zendesk ticket #120335: °°° |
Hi, I can't manage to get it to work. I'm streaming the same video file as in your sample code (PSDK0005.h264), but somehow nothing is showing. I have set the format to |
Agent comment from Leon in Zendesk ticket #120335: °°° |
I'm trying to connect a Canon camera to a M350 via the PSDK. However, I'm struggling with the live view, with the following message
I have the same error when I call
DjiPayloadCamera_GetVideoStreamState
Here is basically the code that I'm running
I'm seeing a similar issue in the PSDK demo :
Do you know what is going wrong ? Thanks
The text was updated successfully, but these errors were encountered: