search for: videoflag

Displaying 2 results from an estimated 2 matches for "videoflag".

2004 Nov 16
0
metadata switches for ffmpeg2theora
...er */ /* pysical pages */ @@ -186,10 +184,10 @@ yuv.u = data + width * height; yuv.v = data + width * height * 5 / 4; } - theora_encode_YUVin (&info.td, &yuv); - theora_encode_packetout (&info.td, e_o_s, &info.op); - ogg_stream_packetin (&info.to, &info.op); - info.videoflag=1; + theora_encode_YUVin (&info->td, &yuv); + theora_encode_packetout (&info->td, e_o_s, &info->op); + ogg_stream_packetin (&info->to, &info->op); + info->videoflag=1; return 0; } @@ -200,71 +198,71 @@ * @param samples samples in buffer * @param e...
2002 Oct 02
2
Audio from fifo
My first guess about the problem would be that the programs want to process the stuff in a different order, e.g. mplayer wants to output some sound before anymore video and encoder_example wants to receive some video before anymore sound. This could easily depend on the order of stuff in the file mplayer is reading. I guess something similar could happen for opening the pipes as well. The