From: Stefan Sauer Date: Fri, 29 Mar 2013 16:14:09 +0000 (+0100) Subject: audiotestsrc: fix a comment typo from previous commit X-Git-Tag: 1.1.1~243 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbf2647f3e4f1f8cdfa38edd1c3bf0b4d7a9a4e5;p=platform%2Fupstream%2Fgst-plugins-base.git audiotestsrc: fix a comment typo from previous commit --- diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 0ca90cd..9ed89da 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -1059,7 +1059,7 @@ gst_audio_test_src_do_seek (GstBaseSrc * basesrc, GstSegment * segment) samplerate = GST_AUDIO_INFO_RATE (&src->info); bpf = GST_AUDIO_INFO_BPF (&src->info); - /* now move to the time indicated, don't see to the sample *after* the time */ + /* now move to the time indicated, don't seek to the sample *after* the time */ next_sample = gst_util_uint64_scale_int (time, samplerate, GST_SECOND); src->next_byte = next_sample * bpf; if (samplerate == 0)