mmplugins/imagingplugins/codecs/JPEGCodec/JPEGCodec.cpp
changeset 15 c1e808730d6c
parent 0 40261b775718
equal deleted inserted replaced
13:efebd1779a59 15:c1e808730d6c
  1465 	register TUint32 look = dv << (32 - bLeft);
  1465 	register TUint32 look = dv << (32 - bLeft);
  1466 	iBitsLeft -= nb;
  1466 	iBitsLeft -= nb;
  1467 	do
  1467 	do
  1468 		{
  1468 		{
  1469 		index = (index << 1) + 1;
  1469 		index = (index << 1) + 1;
  1470 		index +=((look & TUint(1<<31)) != 0);
  1470 		index +=((look & ((TUint32)1<<31)) != 0);
  1471 		look<<=1;
  1471 		look<<=1;
  1472 		} while (++bitCount < nb);
  1472 		} while (++bitCount < nb);
  1473 
  1473 
  1474 	const TUint8* codeIdxHash = aTable.GetCodeIdxHash();
  1474 	const TUint8* codeIdxHash = aTable.GetCodeIdxHash();
  1475 	
  1475