diff options
-rw-r--r-- | gst-libs/gst/audio/audio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/audio/audio.h b/gst-libs/gst/audio/audio.h index 7d1eae5e..12a12e00 100644 --- a/gst-libs/gst/audio/audio.h +++ b/gst-libs/gst/audio/audio.h @@ -58,7 +58,7 @@ G_BEGIN_DECLS * Calculate clocktime from sample @frames and @rate. */ #define GST_FRAMES_TO_CLOCK_TIME(frames, rate) \ - ((GstClockTime) gst_util_uint64_scale (frames, GST_SECOND, rate)) + ((GstClockTime) gst_util_uint64_scale_round (frames, GST_SECOND, rate)) /** * GST_CLOCK_TIME_TO_FRAMES: @@ -68,7 +68,7 @@ G_BEGIN_DECLS * Calculate frames from @clocktime and sample @rate. */ #define GST_CLOCK_TIME_TO_FRAMES(clocktime, rate) \ - gst_util_uint64_scale (clocktime, rate, GST_SECOND) + gst_util_uint64_scale_round (clocktime, rate, GST_SECOND) /** * GST_AUDIO_DEF_RATE: |