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 parse out a bitstream from xeve (git master branch).
Here is the SEI NAL unit from that. The part up to and including 05 looks
OK, but then the long string of FF indicates a lot of SEI data (9872 bytes) - more than
the length of the NALU (1276 bytes).
Note: The derivation for 9872 is 38 * 0xFF + 0xB6, or 38 * 255 + 182.
I'm trying to parse out a bitstream from xeve (git master branch).
Here is the SEI NAL unit from that. The part up to and including
05
looksOK, but then the long string of
FF
indicates a lot of SEI data (9872 bytes) - more thanthe length of the NALU (1276 bytes).
Note: The derivation for 9872 is 38 * 0xFF + 0xB6, or 38 * 255 + 182.
Looking at the code at
xeve/src_base/xeve_eco.c
Line 353 in 7d69e50
there is an unexpected left shift by 3 bits. Why is the
payload_size
being shifted 3 bits?The parsing works out OK for me without that.
The text was updated successfully, but these errors were encountered: