Displaying 1 result from an estimated 1 matches for "fp_enc_info".
2007 May 01
1
contstant bittrate mode - block size - packet size
...ncode from the vd structure the encode seems
to require multiple reads of the imput to get enough data to get a block for
encode
#define READ 882 (20ms)
struct ovectl_ratemanage2_arg rma;
fp_infile = fopen(infile,"rb");
fp_outfile = fopen(outfile,"wb");
fp_enc_info = fopen("enc_info.txt","w");
printf("%s %s\n",infile,outfile);
num_blocks = 0;
num_bytes = 0;
num_packets = 0;
//num_mseconds = 0;
rma.management_active = 1;
rma.bitrate_limit_max_kbps = 3*128000;
rma.bitrate_limit_min_kbps = 3*128000;
rma.bitrat...