Displaying 3 results from an estimated 3 matches for "scanconfig".
Did you mean:
scanqconfig
2005 Oct 28
2
Invalid read of size 1...
Hi all.
I'm here again :)
The small leak in my app is gone.
I'm going on with it, now I grab a frame from a video device and I
encode it with Theora...
The debugger ( valgrind ) says:
...
==2782== Invalid read of size 1
==2782== at 0x1B94B0BD: PixelLineSearch (scan.c:1482)
==2782== by 0x1B94B35A: PixelLineSearch (scan.c:1597)
==2782== by 0x1B94B447: LineSearchScorePixel
2005 Mar 02
1
Patch that fixes distortions during static scenes
...- c->fps_denominator ) / 8;
+ c->fps_denominator /
+ c->fps_numerator ) / 8;
/* Note the height and width in the pre-processor control structure. */
cpi->ScanConfig.VideoFrameHeight = cpi->pb.info.height;
2005 Feb 17
1
Fix a bug that causes the encoder to spend way to many bits on keyframes
...- c->fps_denominator ) / 8;
+ c->fps_denominator /
+ c->fps_numerator ) / 8;
/* Note the height and width in the pre-processor control structure. */
cpi->ScanConfig.VideoFrameHeight = cpi->pb.info.height;
I'm also playing around with the following change to help remove the "popping"
artifact that I mentioned above. This change removes the restriction that
keyframe Q must be in the range 20 <= Q <= 50. For encodes that tend to use
Q lo...