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
I'm trying to use libltc in an android app (for wireless ltc-distribution). Do you have any experiences about that?
First thing I stumbled over is that the NDK seems to interpret the unsigned chars of SMPTETimecode-Object in a strange way. If I assign the time like in the libtlc-example:
Nobody has an idea? I really need to get this forward for an university-project. A hint in which direction I can investigate this issue, would be great.
hey guys,
I'm trying to use libltc in an android app (for wireless ltc-distribution). Do you have any experiences about that?
First thing I stumbled over is that the NDK seems to interpret the unsigned chars of SMPTETimecode-Object in a strange way. If I assign the time like in the libtlc-example:
my_timecode.years =18; my_timecode.months =3; my_timecode.days =18;
the debugger tells me that
years = {unsigned char} '\x12' months = {unsigned char} '\x03' days = {unsigned char} '\x12'
So I changed the assignment to
my_timecode.years ='18'; my_timecode.months ='3'; my_timecode.days ='18';
Second thing, and I'm not sure if this is the consequence of the issue above, is that the encoded timecode looks like that:
"������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&+������������+&&&&&&&&&&&&&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������������������+&&&&&&&&&&+������������+&&&&&&&&&&+������������+&&&&&&&&&&&&&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&+������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&&&&&&&&+������������������������+&&&&&&&&&&+������������+&&&&&&&&&&+������������+&&&&&&&&&&&&&&&&&&&&&&+������������������������+&&&&&&&&&&&&&&&&&&&&&&+������������+&&&"...
which isn't a legal timecode, right? Or is this a way of representing data of the ltcsnd_sample_t-object?
Looking forward to hear from you!
Greetings from cologne/germany.
The text was updated successfully, but these errors were encountered: