GNOME Bugzilla – Bug 322643
Incorrect matroska frame default duration
Last modified: 2005-12-01 16:04:41 UTC
For video tracks, the default frame duration is currently computed as GST_SECOND * framerate. This is of course incorrect and it should be GST_SECOND / framerate. Patch attached.
Created attachment 55312 [details] [review] Matroska muxer: video default duration fix. Default duration is changed to GST_SECOND / framerate
Ta, committed. * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps): From Michal Benes: frame duration should be GST_SECOND / framerate, not GST_SECOND * framerate. (Fixes: #322643)