mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
replace framerate aproximations by their real value (24000/1001, 30000/1001, 60000/1001)
Original commit message from CVS: * ext/dv/gstdvdec.c: * ext/libfame/gstlibfame.c: * gst/subparse/gstsubparse.c: (parse_mdvdsub): * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect): replace framerate aproximations by their real value (24000/1001, 30000/1001, 60000/1001) Finish fixing bug #164049
This commit is contained in:
parent
66962aae37
commit
a6f75b9e14
2 changed files with 11 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
|
||||||
|
|
||||||
|
* ext/dv/gstdvdec.c:
|
||||||
|
* ext/libfame/gstlibfame.c:
|
||||||
|
* gst/subparse/gstsubparse.c: (parse_mdvdsub):
|
||||||
|
* gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
|
||||||
|
replace framerate aproximations by their real value
|
||||||
|
(24000/1001, 30000/1001, 60000/1001)
|
||||||
|
Finish fixing bug #164049
|
||||||
|
|
||||||
2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* ext/ogg/gstoggmux.c:
|
* ext/ogg/gstoggmux.c:
|
||||||
|
|
|
@ -304,7 +304,7 @@ parse_mdvdsub (GstSubparse * self, guint64 * out_start_time,
|
||||||
|
|
||||||
/* FIXME: hardcoded for now, but detecting the correct value is
|
/* FIXME: hardcoded for now, but detecting the correct value is
|
||||||
* not going to be easy, I suspect... */
|
* not going to be easy, I suspect... */
|
||||||
const double frames_per_sec = 23.98;
|
const double frames_per_sec = 24000 / 1001;
|
||||||
GString *markup;
|
GString *markup;
|
||||||
gchar *rv;
|
gchar *rv;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue