summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 81173fc)
raw | patch | inline | side by side (parent: 81173fc)
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | |
Thu, 14 Apr 2011 14:03:56 +0000 (15:03 +0100) | ||
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | |
Thu, 14 Apr 2011 14:03:56 +0000 (15:03 +0100) |
ext/dvdread/dvdreadsrc.c | patch | blob | history | |
ext/sidplay/gstsiddec.cc | patch | blob | history | |
ext/x264/gstx264enc.c | patch | blob | history |
index dea020031cdd0dffb8a7934b34422c1287733822..a46ee4cf6f00973d8886824e76313b28be7f9eb4 100644 (file)
--- a/ext/dvdread/dvdreadsrc.c
+++ b/ext/dvdread/dvdreadsrc.c
GstSegment *seg;
guint8 oneblock[DVD_VIDEO_LB_LEN];
dsi_t dsi_pack;
- guint next_vobu, next_ilvu_start, cur_output_size;
+ guint next_vobu, cur_output_size;
gint len;
gint retries;
gint64 next_time;
/* determine where we go next. These values are the ones we
* mostly care about */
- next_ilvu_start = src->cur_pack + dsi_pack.sml_agli.data[angle].address;
cur_output_size = dsi_pack.dsi_gi.vobu_ea + 1;
/* If we're not at the end of this cell, we can determine the next
index ebdef08891c3f1a8b96942d0d7a95ffb7845ac23..7f0a94ab026014666ed2d284bf99509a3d2ce9d8 100644 (file)
--- a/ext/sidplay/gstsiddec.cc
+++ b/ext/sidplay/gstsiddec.cc
gst_siddec_class_init (GstSidDec * klass)
{
GObjectClass *gobject_class;
- GstElementClass *gstelement_class;
gobject_class = (GObjectClass *) klass;
- gstelement_class = (GstElementClass *) klass;
parent_class = GST_ELEMENT_CLASS (g_type_class_peek_parent (klass));
diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c
index 63f61598e4377fe2dc5cfeaae6ce3c26e4bcecac..098b41f0a891b406c38bc4c2acd7a60e591d3cb8 100644 (file)
--- a/ext/x264/gstx264enc.c
+++ b/ext/x264/gstx264enc.c
#endif
int encoder_return;
GstFlowReturn ret;
- GstClockTime timestamp;
GstClockTime duration;
guint8 *data;
GstEvent *forcekeyunit_event = NULL;
in_buf = g_queue_pop_head (encoder->delay);
if (in_buf) {
- timestamp = GST_BUFFER_TIMESTAMP (in_buf);
duration = GST_BUFFER_DURATION (in_buf);
gst_buffer_unref (in_buf);
} else {