From a481b8e53173d212d4fdf0c2653246ce52ee6930 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 17 Oct 2005 17:50:45 +0000 Subject: [PATCH] Set buffer durations on IEC958 buffers. Original commit message from CVS: Set buffer durations on IEC958 buffers. --- ChangeLog | 5 +++++ common | 2 +- gst/iec958/ac3iec.c | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6fda5ad..498d27b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-17 Michael Smith + + * gst/iec958/ac3iec.c: (ac3iec_chain_raw): + Set buffer duration on IEC958 buffers. + 2005-10-16 Tim-Philipp Müller * configure.ac: diff --git a/common b/common index 3a9d355..cf363b3 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 3a9d355b657cf710011aa1eaadd64f6723527e14 +Subproject commit cf363b3ae6ce3c4a84a561e04ffc4e3b37435a61 diff --git a/gst/iec958/ac3iec.c b/gst/iec958/ac3iec.c index c9bbbf9..2a59c20 100644 --- a/gst/iec958/ac3iec.c +++ b/gst/iec958/ac3iec.c @@ -329,6 +329,7 @@ ac3iec_chain_raw (GstPad * pad, GstBuffer * buf) /* Set the timestamp. */ GST_BUFFER_TIMESTAMP (new) = ac3iec->cur_ts; + GST_BUFFER_DURATION (new) = IEC958_FRAME_DURATION; ac3iec->cur_ts = GST_CLOCK_TIME_NONE; GST_LOG_OBJECT (ac3iec, "Pushing IEC958 buffer of size %d", -- 2.7.4