Correction to how the VP8 wrapper generates picture ids.
BUG= TEST= Review URL: http://webrtc-codereview.appspot.com/329006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1229 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
188fc35e07
commit
b33f9dccd6
@ -514,7 +514,7 @@ void VP8Encoder::PopulateCodecSpecific(CodecSpecificInfo* codec_specific,
|
||||
#if WEBRTC_LIBVPX_VERSION >= 971
|
||||
}
|
||||
#endif
|
||||
_pictureID = (_pictureID + 1) % 0x7FFF; // prepare next
|
||||
_pictureID = (_pictureID + 1) & 0x7FFF; // prepare next
|
||||
}
|
||||
|
||||
WebRtc_Word32
|
||||
|
Loading…
Reference in New Issue
Block a user