search for: audioflag

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

2004 Nov 16
0
metadata switches for ffmpeg2theora
...into the bitstream */ - while (vorbis_bitrate_flushpacket (&info.vd, &info.op)){ - ogg_stream_packetin (&info.vo, &info.op); + while (vorbis_bitrate_flushpacket (&info->vd, &info->op)){ + ogg_stream_packetin (&info->vo, &info->op); } } - info.audioflag=1; + info->audioflag=1; /* - if (ogg_stream_eos (&info.vo)){ - info.audioflag = 0; + if (ogg_stream_eos (&info->vo)){ + info->audioflag = 0; return 0; } */ return 0; } -void print_stats(double timebase){ +static void print_stats(theoraframes_info *info, double timeb...
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