Displaying 1 result from an estimated 1 matches for "qthreshtabl".
Did you mean:
qthreshtable
2005 Feb 17
1
Fix a bug that causes the encoder to spend way to many bits on keyframes
...his is a good change.
Index: misc_common.c
===================================================================
--- misc_common.c (revision 8940)
+++ misc_common.c (working copy)
@@ -255,14 +255,6 @@
/* QIndex should now indicate the optimal Q. */
cpi->pb.ThisFrameQualityValue = cpi->pb.QThreshTable[QIndex];
- /* Apply range restrictions for key frames. */
- if ( GetFrameType(&cpi->pb) == BASE_FRAME ) {
- if ( cpi->pb.ThisFrameQualityValue > cpi->pb.QThreshTable[20] )
- cpi->pb.ThisFrameQualityValue = cpi->pb.QThreshTable[20];
- else if ( cpi->pb.ThisFr...