From f33344ab0c45164a948f209db078a1d317b512f6 Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Fri, 15 Jan 2010 21:34:02 +0100 Subject: [PATCH] mpeg4videoparse: don't set an invalid framerate. When fixed_vop_rate is not set we can not set a framerate based on vop_time_increment_resolution as it would most likely be wrong. Don't set any framerate on the caps in that case. --- gst/mpeg4videoparse/mpeg4videoparse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/mpeg4videoparse/mpeg4videoparse.c b/gst/mpeg4videoparse/mpeg4videoparse.c index c5463b5e46..6b85603ded 100644 --- a/gst/mpeg4videoparse/mpeg4videoparse.c +++ b/gst/mpeg4videoparse/mpeg4videoparse.c @@ -298,7 +298,8 @@ gst_mpeg4vparse_handle_vo (GstMpeg4VParse * parse, const guint8 * data, fixed_time_increment = bits; } else { - fixed_time_increment = 1; + /* When fixed_vop_rate is not set we can't guess any framerate */ + fixed_time_increment = 0; } GST_DEBUG_OBJECT (parse, "fixed time increment %d", fixed_time_increment);