diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2013-03-29 17:14:09 +0100 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2013-03-29 17:16:17 +0100 |
commit | fbf2647f3e4f1f8cdfa38edd1c3bf0b4d7a9a4e5 (patch) | |
tree | 873b76d5eaf00e0fa9711b55264d61a9be6f1d0a | |
parent | c5d5221cb296ba855f3114c9da6823f59c6f26d8 (diff) |
audiotestsrc: fix a comment typo from previous commit
-rw-r--r-- | gst/audiotestsrc/gstaudiotestsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 0ca90cdab..9ed89daaa 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) |