Displaying 1 result from an estimated 1 matches for "ivideoy".
Did you mean:
ivideo
2006 Oct 06
0
V4L + Theora small app...
...V4Lbuffer != NULL )
{
munmap( pucV4Lbuffer, iV4LbufferSize );
pucV4Lbuffer = NULL;
}
if( iV4Lfd != -1 )
{
close( iV4Lfd );
iV4Lfd = -1;
}
}
/* --- Ogg --------------------------------------------------------------- */
int iVideoX = 0;
int iVideoY = 0;
int iFrameOffsetX = 0;
int iFrameOffsetY = 0;
int iVideoFPSnum = 25; /* FPS 12.5 */
int iVideoFPSden = 2;
int iVideoAspNum = 1;
int iVideoAspDen = 1;
int iVideoBitrate = 400000;
int iVideoQuality = 15;
int iFrameCounter;
unsigned char* ucYUVframe = NULL;
FILE*...