Commit dfc424db by Rakesh Kumar

Fix review comment in RTPH263Reader

Change-Id: I6ae45dc710245769f36130ead4077d8e9980bf54
parent aae9f23c
...@@ -178,7 +178,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull; ...@@ -178,7 +178,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
* >Android's software H263 decoder</a>. * >Android's software H263 decoder</a>.
*/ */
long shortHeader = data.readUnsignedInt(); long shortHeader = data.readUnsignedInt();
if (((shortHeader >> 10) & 0xffff) == 0x20) { if (((shortHeader >> 10) & 0x3f) == 0x20) {
int header = data.peekUnsignedByte(); int header = data.peekUnsignedByte();
int vopType = ((header >> 1) & 0x1); int vopType = ((header >> 1) & 0x1);
if (!gotResolution && vopType == I_VOP) { if (!gotResolution && vopType == I_VOP) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment