Home | History | Annotate | Download | only in src

Lines Matching refs:tmpvar

685     uint32 tmpvar;
697 PV_BitstreamShowBitsByteAlign(stream, marker_length, &tmpvar);
698 if (tmpvar == RESYNC_MARKER) break;
709 uint32 tmpvar;
721 PV_BitstreamShowBitsByteAlignNoForceStuffing(stream, 17, &tmpvar);
722 if (tmpvar == RESYNC_MARKER) break;
788 uint32 tmpvar, tmpvar2;
800 BitstreamShowBits32(stream, 17, &tmpvar);
801 if (!tmpvar) return PV_FAIL;
803 if (tmpvar & 1) // Check if the 17th bit from the curr bit pos is a '1'
805 if (tmpvar == MOTION_MARKER_COMB)
811 tmpvar >>= 1;
812 tmpvar &= 0xF;
813 PV_BitstreamFlushBits(stream, (int)(12 + firstZero[tmpvar]));
819 tmpvar >>= 1;
820 tmpvar2 = tmpvar & 0xF;
829 tmpvar >>= 4;
830 tmpvar2 = tmpvar & 0xF;
839 tmpvar >>= 4;
840 tmpvar2 = tmpvar & 0xF;
879 uint32 tmpvar, tmpvar2;
890 BitstreamShowBits32(stream, 19, &tmpvar);
892 if (tmpvar & 1) // Check if the 17th bit from the curr bit pos is a '1'
894 if (tmpvar == DC_MARKER)
907 tmpvar >>= 1;
908 tmpvar2 = tmpvar & 0xF;
916 tmpvar >>= 4;
917 tmpvar2 = tmpvar & 0xF;
924 tmpvar >>= 4;
925 tmpvar2 = tmpvar & 0xF;
953 int byte0, byte1, byte2, shift, tmpvar;
979 tmpvar = byte2 >> 4;
981 if (tmpvar)
983 shift = 9 - firstOne[tmpvar];