After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 322643 - Incorrect matroska frame default duration
Incorrect matroska frame default duration
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
0.9.x
Other Linux
: Normal normal
: 0.9.7
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-11-28 12:41 UTC by Michal Benes
Modified: 2005-12-01 16:04 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Matroska muxer: video default duration fix. (910 bytes, patch)
2005-11-28 12:42 UTC, Michal Benes
none Details | Review

Description Michal Benes 2005-11-28 12:41:03 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.
Comment 1 Michal Benes 2005-11-28 12:42:35 UTC
Created attachment 55312 [details] [review]
Matroska muxer: video default duration fix.

Default duration is changed to GST_SECOND / framerate
Comment 2 Jan Schmidt 2005-11-28 12:59:31 UTC
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)