mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix review comment in RTPH263Reader
Change-Id: I6ae45dc710245769f36130ead4077d8e9980bf54
This commit is contained in:
parent
aae9f23c79
commit
dfc424dbe6
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue