Skip to content

Commit

Permalink
postproc/postprocess_template: Compute packedYScale and QPCorrecture …
Browse files Browse the repository at this point in the history
…without floats

Signed-off-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed May 30, 2015
1 parent c41e0ae commit ebe919c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libpostproc/postprocess_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -3372,7 +3372,7 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
int i;
uint64_t maxClipped;
uint64_t clipped;
double scale;
AVRational scale;

c.frameNum++;
// first frame is fscked so we ignore it
Expand All @@ -3397,13 +3397,13 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
clipped-= yHistogram[white];
}

scale= (double)(c.ppMode.maxAllowedY - c.ppMode.minAllowedY) / (double)(white-black);
scale = (AVRational){c.ppMode.maxAllowedY - c.ppMode.minAllowedY, white - black};

#if TEMPLATE_PP_MMXEXT
c.packedYScale= (uint16_t)(scale*256.0 + 0.5);
c.packedYScale = (uint16_t)av_rescale(scale.num, 256, scale.den);
c.packedYOffset= (((black*c.packedYScale)>>8) - c.ppMode.minAllowedY) & 0xFFFF;
#else
c.packedYScale= (uint16_t)(scale*1024.0 + 0.5);
c.packedYScale = (uint16_t)av_rescale(scale.num, 1024, scale.den);
c.packedYOffset= (black - c.ppMode.minAllowedY) & 0xFFFF;
#endif

Expand All @@ -3413,7 +3413,7 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
c.packedYScale|= c.packedYScale<<32;
c.packedYScale|= c.packedYScale<<16;

if(mode & LEVEL_FIX) QPCorrecture= (int)(scale*256*256 + 0.5);
if(mode & LEVEL_FIX) QPCorrecture= (int)av_rescale(scale.num, 256*256, scale.den);
else QPCorrecture= 256*256;
}else{
c.packedYScale= 0x0100010001000100LL;
Expand Down

0 comments on commit ebe919c

Please sign in to comment.