• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:byte_run

183     int byte_run;
299 byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
300 if (byte_run < 0) {
301 byte_run = -byte_run;
304 CHECK_PIXEL_PTR(byte_run * 2);
305 for (j = 0; j < byte_run; j++, pixel_countdown -= 2) {
310 CHECK_PIXEL_PTR(byte_run * 2);
311 if (bytestream2_tell(&g2) + byte_run * 2 > stream_ptr_after_chunk)
313 for (j = 0; j < byte_run * 2; j++, pixel_countdown--) {
346 byte_run = sign_extend(bytestream2_get_byte(&g2),8);
347 if (byte_run > 0) {
348 CHECK_PIXEL_PTR(byte_run);
349 if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
351 for (j = 0; j < byte_run; j++, pixel_countdown--) {
354 } else if (byte_run < 0) {
355 byte_run = -byte_run;
357 CHECK_PIXEL_PTR(byte_run);
358 for (j = 0; j < byte_run; j++, pixel_countdown--) {
389 byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
390 if (!byte_run) {
395 if (byte_run > 0) {
397 CHECK_PIXEL_PTR(byte_run);
398 for (j = 0; j < byte_run; j++) {
405 } else { /* copy bytes if byte_run < 0 */
406 byte_run = -byte_run;
407 CHECK_PIXEL_PTR(byte_run);
408 if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
410 for (j = 0; j < byte_run; j++) {
501 int byte_run;
575 byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
576 if (byte_run < 0) {
577 byte_run = -byte_run;
579 CHECK_PIXEL_PTR(2 * byte_run);
580 for (j = 0; j < byte_run; j++, pixel_countdown -= 2) {
585 if (bytestream2_tell(&g2) + 2*byte_run > stream_ptr_after_chunk)
587 CHECK_PIXEL_PTR(2 * byte_run);
588 for (j = 0; j < byte_run; j++, pixel_countdown--) {
623 byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
624 if (byte_run > 0) {
626 CHECK_PIXEL_PTR(byte_run);
627 for (j = 0; j < byte_run; j++) {
634 } else { /* copy bytes if byte_run < 0 */
635 byte_run = -byte_run;
636 if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
638 CHECK_PIXEL_PTR(byte_run);
639 for (j = 0; j < byte_run; j++) {
679 byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
680 if (byte_run > 0) {
682 CHECK_PIXEL_PTR(2 * byte_run);
683 for (j = 0; j < byte_run; j++) {
691 } else { /* copy pixels if byte_run < 0 */
692 byte_run = -byte_run;
693 if (bytestream2_tell(&g2) + 2 * byte_run > stream_ptr_after_chunk)
695 CHECK_PIXEL_PTR(2 * byte_run);
696 for (j = 0; j < byte_run; j++) {