From: Julien Moutte Date: Fri, 15 Jan 2010 20:34:02 +0000 (+0100) Subject: mpeg4videoparse: don't set an invalid framerate. X-Git-Tag: 1.19.3~507^2~17554 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f33344ab0c45164a948f209db078a1d317b512f6;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/gst/mpeg4videoparse/mpeg4videoparse.c b/gst/mpeg4videoparse/mpeg4videoparse.c index c5463b5..6b85603 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);