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
Goin in through the source xiecc_rtmp.c, it seems the library only supports the following NAL unit types:
NonIDR [1] else if ((nal[0] & 0x1f) == 0x01) line 624
IDR [5] else if ((nal[0] & 0x1f) == 0x05) line 612
Sequence parameter set (SPS) [7] if (nal[0] == 0x67) line 521
I need to send an SEI message [6], specifically the device orientation. Can this be done with this library? Can it be done by adding another "if" statement?
The text was updated successfully, but these errors were encountered:
Goin in through the source
xiecc_rtmp.c
, it seems the library only supports the following NAL unit types:else if ((nal[0] & 0x1f) == 0x01)
line 624else if ((nal[0] & 0x1f) == 0x05)
line 612if (nal[0] == 0x67)
line 521I need to send an SEI message [6], specifically the device orientation. Can this be done with this library? Can it be done by adding another "if" statement?
The text was updated successfully, but these errors were encountered: