Home | History | Annotate | Download | only in jpeg-6b

Lines Matching defs:retcode

244   int retcode;
250 retcode = jpeg_consume_input(cinfo);
252 switch (retcode) {
254 retcode = JPEG_HEADER_OK;
264 retcode = JPEG_HEADER_TABLES_ONLY;
271 return retcode;
290 int retcode = JPEG_SUSPENDED;
302 retcode = (*cinfo->inputctl->consume_input) (cinfo);
303 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
312 retcode = JPEG_REACHED_SOS;
321 retcode = (*cinfo->inputctl->consume_input) (cinfo);
326 return retcode;