wcap-decode: Fix setting framerate
authorKristian Høgsberg <krh@bitplanet.net>
Tue, 29 May 2012 14:51:55 +0000 (10:51 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Tue, 29 May 2012 14:51:55 +0000 (10:51 -0400)
Default to 30fps instead of crashing if we don't get a framerate on the
command line.

wcap/vpxenc.c

index 1de4f92..793b73f 100644 (file)
@@ -315,6 +315,7 @@ struct input_state
     int                   use_i420;
     struct wcap_decoder  *wcap;
     uint32_t              output_msecs;
+    struct vpx_rational   output_framerate;
 };
 
 static inline int rgb_to_yuv(uint32_t format, uint32_t p, int *u, int *v)
@@ -1811,8 +1812,14 @@ void open_input_file(struct input_state *input, struct global_config *global)
         input->file_type = FILE_TYPE_WCAP;
         input->w = input->wcap->width;
         input->h = input->wcap->height;
-        input->framerate = global->framerate;
         input->use_i420 = 0;
+       if (global->have_framerate) {
+           input->framerate = global->framerate;
+       }
+        else {
+           input->framerate.num = 30;
+           input->framerate.den = 1;
+       }
     }
     else
     {