summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2017-12-09 14:01:51 +0200
committerSebastian Dröge <sebastian@centricular.com>2017-12-09 14:01:51 +0200
commit30f8595780c0475d83b8950b3a4922e850aafbd0 (patch)
treec3b23d82fbdccd8f612830ce990b50063383e35b
parentea888a0e3baa106f926d0ded1fd5501a6aae6bd5 (diff)
playback-tutorial-3/basic-tutorial-8: Fix buffer duration calculations
Same as last commit in various other places https://bugzilla.gnome.org/show_bug.cgi?id=791408
-rw-r--r--examples/tutorials/playback-tutorial-3.c2
-rw-r--r--markdown/tutorials/basic/short-cutting-the-pipeline.md4
-rw-r--r--markdown/tutorials/playback/short-cutting-the-pipeline.md2
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/tutorials/playback-tutorial-3.c b/examples/tutorials/playback-tutorial-3.c
index cea556f..0362dc9 100644
--- a/examples/tutorials/playback-tutorial-3.c
+++ b/examples/tutorials/playback-tutorial-3.c
@@ -36,7 +36,7 @@ static gboolean push_data (CustomData *data) {
/* Set its timestamp and duration */
GST_BUFFER_TIMESTAMP (buffer) = gst_util_uint64_scale (data->num_samples, GST_SECOND, SAMPLE_RATE);
- GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (CHUNK_SIZE, GST_SECOND, SAMPLE_RATE);
+ GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (num_samples, GST_SECOND, SAMPLE_RATE);
/* Generate some psychodelic waveforms */
gst_buffer_map (buffer, &map, GST_MAP_WRITE);
diff --git a/markdown/tutorials/basic/short-cutting-the-pipeline.md b/markdown/tutorials/basic/short-cutting-the-pipeline.md
index 0c5fcf3..855d4e1 100644
--- a/markdown/tutorials/basic/short-cutting-the-pipeline.md
+++ b/markdown/tutorials/basic/short-cutting-the-pipeline.md
@@ -131,7 +131,7 @@ static gboolean push_data (CustomData *data) {
/* Set its timestamp and duration */
GST_BUFFER_TIMESTAMP (buffer) = gst_util_uint64_scale (data->num_samples, GST_SECOND, SAMPLE_RATE);
- GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (CHUNK_SIZE, GST_SECOND, SAMPLE_RATE);
+ GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (num_samples, GST_SECOND, SAMPLE_RATE);
/* Generate some psychodelic waveforms */
gst_buffer_map (buffer, &map, GST_MAP_WRITE);
@@ -450,7 +450,7 @@ static gboolean push_data (CustomData *data) {
/* Set its timestamp and duration */
GST_BUFFER_TIMESTAMP (buffer) = gst_util_uint64_scale (data->num_samples, GST_SECOND, SAMPLE_RATE);
- GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (CHUNK_SIZE, GST_SECOND, SAMPLE_RATE);
+ GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (num_samples, GST_SECOND, SAMPLE_RATE);
/* Generate some psychodelic waveforms */
raw = (gint16 *)GST_BUFFER_DATA (buffer);
diff --git a/markdown/tutorials/playback/short-cutting-the-pipeline.md b/markdown/tutorials/playback/short-cutting-the-pipeline.md
index 00f6803..cf37b45 100644
--- a/markdown/tutorials/playback/short-cutting-the-pipeline.md
+++ b/markdown/tutorials/playback/short-cutting-the-pipeline.md
@@ -57,7 +57,7 @@ static gboolean push_data (CustomData *data) {
/* Set its timestamp and duration */
GST_BUFFER_TIMESTAMP (buffer) = gst_util_uint64_scale (data->num_samples, GST_SECOND, SAMPLE_RATE);
- GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (CHUNK_SIZE, GST_SECOND, SAMPLE_RATE);
+ GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (num_samples, GST_SECOND, SAMPLE_RATE);
/* Generate some psychodelic waveforms */
gst_buffer_map (buffer, &map, GST_MAP_WRITE);