Fix review comment in RTPH263Reader

Change-Id: I6ae45dc710245769f36130ead4077d8e9980bf54
This commit is contained in:
Rakesh Kumar 2022-05-09 19:13:55 +05:30
parent aae9f23c79
commit dfc424dbe6

View file

@ -178,7 +178,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
* >Android's software H263 decoder</a>.
*/
long shortHeader = data.readUnsignedInt();
if (((shortHeader >> 10) & 0xffff) == 0x20) {
if (((shortHeader >> 10) & 0x3f) == 0x20) {
int header = data.peekUnsignedByte();
int vopType = ((header >> 1) & 0x1);
if (!gotResolution && vopType == I_VOP) {