Displaying 2 results from an estimated 2 matches for "founddata".
2002 Feb 20
4
Questions about libvorbisenc
Hi all,
I am just coming in the mailing list.... ;-)
I'm working on an Ripper/Encoder for GNUstep.
At first sight, libvorbisogg seems to be the library that I needed.
The problem for me is documentation. 
So I have a few question about this library : 
- in order to init an encoding process, we need to provide channels. Well,
what does is mean ?
- in order to init an encoding process, we need
2007 May 01
1
contstant bittrate mode - block size - packet size
...rma.management_active = 1;
  rma.bitrate_limit_max_kbps = 3*128000;
  rma.bitrate_limit_min_kbps = 3*128000;
  rma.bitrate_limit_reservoir_bits = 0;
  rma.bitrate_limit_reservoir_bias = 0;
  rma.bitrate_average_kbps = 3*128000;
  /* skip over header */
  readbuffer[0] = '\0';
  for (i=0, founddata=0; i<30 && ! feof(fp_infile) && ! ferror(fp_infile);
i++)
  {
      fread(readbuffer,1,2,fp_infile);
      if ( ! strncmp((char*)readbuffer, "da", 2) )
      {
          founddata = 1;
          fread(readbuffer,1,6,fp_infile);
          break;
      }
  }
  vorbis_i...