[Ffmpeg-cvslog] r6677 - trunk/libavcodec/snow.c
michael
subversion
Thu Oct 12 22:55:44 CEST 2006
Author: michael
Date: Thu Oct 12 22:55:42 2006
New Revision: 6677
Modified:
trunk/libavcodec/snow.c
Log:
-1 is a valid return value in ratecontrol_1pass() -> 100l for takis
Modified: trunk/libavcodec/snow.c
==============================================================================
--- trunk/libavcodec/snow.c (original)
+++ trunk/libavcodec/snow.c Thu Oct 12 22:55:42 2006
@@ -3876,7 +3876,7 @@
pict->quality= ff_rate_estimate_qscale(&s->m, 1);
if (pict->quality < 0)
- return -1;
+ return INT_MIN;
s->lambda= pict->quality * 3/2;
delta_qlog= qscale2qlog(pict->quality) - s->qlog;
s->qlog+= delta_qlog;
@@ -4186,7 +4186,7 @@
if(s->pass1_rc && plane_index==0){
int delta_qlog = ratecontrol_1pass(s, pict);
- if (delta_qlog < 0)
+ if (delta_qlog <= INT_MIN)
return -1;
if(delta_qlog){
//reordering qlog in the bitstream would eliminate this reset
More information about the ffmpeg-cvslog
mailing list