Changeset 3486
- Timestamp:
- Mar 25, 2011 7:56:41 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjmedia/include/pjmedia-codec/h263_packetizer.h
r3392 r3486 73 73 * preceeding the bitstream for payload header! 74 74 */ 75 pj_assert(*pos>=2); 76 p -= 2; 75 76 if (*pos < 2) { 77 /* Invalid H263 bitstream, it's not started with PSC */ 78 return PJ_EINVAL; 79 } 80 81 p -= 2; 77 82 *p = 0; 78 83 }
Note: See TracChangeset
for help on using the changeset viewer.