diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2008-07-03 14:44:51 +0000 |
---|---|---|
committer | Peter Kjellerstedt <pkj@axis.com> | 2008-07-03 14:44:51 +0000 |
commit | 4e2dcf4015d952f8311a019f06fc85765089886b (patch) | |
tree | 938e333abce2b8c5c9b7d5b7508077bd30c00e10 /gst | |
parent | e6d85e6a1e51eb39155591dd5dc1a4b06f1267ed (diff) | |
download | gst-plugins-bad-4e2dcf4015d952f8311a019f06fc85765089886b.tar.gz gst-plugins-bad-4e2dcf4015d952f8311a019f06fc85765089886b.tar.bz2 gst-plugins-bad-4e2dcf4015d952f8311a019f06fc85765089886b.zip |
gst/rtpmanager/: Corrected a typo (interpollate -> interpolate).
Original commit message from CVS:
* ChangeLog:
* gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_loop):
* gst/rtpmanager/rtpsource.c: (rtp_source_get_new_sr):
Corrected a typo (interpollate -> interpolate).
Diffstat (limited to 'gst')
-rw-r--r-- | gst/rtpmanager/gstrtpjitterbuffer.c | 2 | ||||
-rw-r--r-- | gst/rtpmanager/rtpsource.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c index a4ec5b48..9b5e5236 100644 --- a/gst/rtpmanager/gstrtpjitterbuffer.c +++ b/gst/rtpmanager/gstrtpjitterbuffer.c @@ -1128,7 +1128,7 @@ again: GST_DEBUG_OBJECT (jitterbuffer, "out_time %" GST_TIME_FORMAT ", last %" GST_TIME_FORMAT, GST_TIME_ARGS (out_time), GST_TIME_ARGS (priv->last_out_time)); - /* interpollate between the current time and the last time based on + /* interpolate between the current time and the last time based on * number of packets we are missing, this is the estimated duration * for the missing packet based on equidistant packet spacing. Also make * sure we never go negative. */ diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index 50170d10..4c01a7ad 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -1184,7 +1184,7 @@ rtp_source_get_new_sr (RTPSource * src, guint64 ntpnstime, g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE); - /* use the sync params to interpollate the date->time member to rtptime. We + /* use the sync params to interpolate the date->time member to rtptime. We * use the last sent timestamp and rtptime as reference points. We assume * that the slope of the rtptime vs timestamp curve is 1, which is certainly * sufficient for the frequency at which we report SR and the rate we send @@ -1211,7 +1211,7 @@ rtp_source_get_new_sr (RTPSource * src, guint64 ntpnstime, t_rtp -= gst_util_uint64_scale_int (diff, src->clock_rate, GST_SECOND); } } else { - GST_WARNING ("no clock-rate, cannot interpollate rtp time"); + GST_WARNING ("no clock-rate, cannot interpolate rtp time"); } /* convert the NTP time in nanoseconds to 32.32 fixed point */ |