Displaying 1 result from an estimated 1 matches for "akbps".
Did you mean:
  kbps
  
2004 Nov 16
0
metadata switches for ffmpeg2theora
...+static void print_stats(theoraframes_info *info, double timebase){
 	int hundredths = timebase * 100 - (long) timebase * 100;
 	int seconds = (long) timebase % 60;
 	int minutes = ((long) timebase / 60) % 60;
 	int hours = (long) timebase / 3600;
 
-	if(info.vkbps<0)
-		info.vkbps=0;
-	if(info.akbps<0)
-		info.akbps=0;
+	if(info->vkbps<0)
+		info->vkbps=0;
+	if(info->akbps<0)
+		info->akbps=0;
 
-	if(info.debug==1 && !info.video_only && !info.audio_only){
+	if(info->debug==1 && !info->video_only && !info->audio_only){
 		fprintf (st...