Home | History | Annotate | Download | only in decoder

Lines Matching refs:ofst

98     WORD32 ofst;
103 ofst = -1;
107 while(ofst < (bytes_remaining - 1))
109 ofst++;
110 if(pu1_buf[ofst] != 0)
117 if((ofst < (bytes_remaining - 1)) &&
118 (pu1_buf[ofst + 1] == START_CODE_PREFIX_BYTE) &&
122 ofst++;
127 if((0 == start_code_found) && (ofst < bytes_remaining))
129 if((START_CODE_PREFIX_BYTE == pu1_buf[ofst]) &&
133 ofst++;
136 /* Since ofst started at -1, increment it by 1 */
137 ofst++;
139 return ofst;