search for: audiopage

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

Did you mean: audio_page
2004 Nov 16
0
metadata switches for ffmpeg2theora
...|| info.audio_only) && info.audioflag==1))){ + while (!info->video_only && (e_o_s || + ((info->audiotime < info->videotime || info->audio_only) && info->audioflag==1))){ - info.audioflag = 0; - while(ogg_stream_pageout (&info.vo, &info.audiopage) > 0){ + info->audioflag = 0; + while(ogg_stream_pageout (&info->vo, &info->audiopage) > 0){ /* flush an audio page */ - info.audiotime= - vorbis_granule_time (&info.vd,ogg_page_granulepos(&info.audiopage)); - info.audio_bytesout += - fwrite (...
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