audiotestsrc: fix a comment typo from previous commit
authorStefan Sauer <ensonic@users.sf.net>
Fri, 29 Mar 2013 16:14:09 +0000 (17:14 +0100)
committerStefan Sauer <ensonic@users.sf.net>
Fri, 29 Mar 2013 16:16:17 +0000 (17:16 +0100)
gst/audiotestsrc/gstaudiotestsrc.c

index 0ca90cd..9ed89da 100644 (file)
@@ -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)