diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-07-19 23:35:05 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-07-19 23:35:05 +0100 |
commit | 4728d7f18eff48760ff2e753142b7313eaf552d1 (patch) | |
tree | a5572e16f45a9c1d3f4c4be2d46dd18a37a387a1 /ext/kate | |
parent | faf2d0469691a0f357cf6a4c048cf774ddf5b990 (diff) | |
download | gst-plugins-bad-4728d7f18eff48760ff2e753142b7313eaf552d1.tar.gz gst-plugins-bad-4728d7f18eff48760ff2e753142b7313eaf552d1.tar.bz2 gst-plugins-bad-4728d7f18eff48760ff2e753142b7313eaf552d1.zip |
kate: add some FIXMEs
Diffstat (limited to 'ext/kate')
-rw-r--r-- | ext/kate/gstkatedec.c | 2 | ||||
-rw-r--r-- | ext/kate/gstkateenc.c | 2 | ||||
-rw-r--r-- | ext/kate/gstkateparse.c | 2 | ||||
-rw-r--r-- | ext/kate/gstkatetag.c | 2 | ||||
-rw-r--r-- | ext/kate/gstkatetiger.c | 2 | ||||
-rw-r--r-- | ext/kate/gstkateutil.c | 5 |
6 files changed, 13 insertions, 2 deletions
diff --git a/ext/kate/gstkatedec.c b/ext/kate/gstkatedec.c index 30ab8c16..3a207505 100644 --- a/ext/kate/gstkatedec.c +++ b/ext/kate/gstkatedec.c @@ -74,6 +74,8 @@ * </refsect2> */ +/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/ext/kate/gstkateenc.c b/ext/kate/gstkateenc.c index ccf01396..e3e6c7b7 100644 --- a/ext/kate/gstkateenc.c +++ b/ext/kate/gstkateenc.c @@ -68,6 +68,8 @@ * </refsect2> */ +/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/ext/kate/gstkateparse.c b/ext/kate/gstkateparse.c index eb0d2b08..89d17514 100644 --- a/ext/kate/gstkateparse.c +++ b/ext/kate/gstkateparse.c @@ -58,6 +58,8 @@ * */ +/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */ + #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/ext/kate/gstkatetag.c b/ext/kate/gstkatetag.c index 608f0747..7a39c556 100644 --- a/ext/kate/gstkatetag.c +++ b/ext/kate/gstkatetag.c @@ -63,6 +63,8 @@ * </refsect2> */ +/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */ + #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/ext/kate/gstkatetiger.c b/ext/kate/gstkatetiger.c index 433a3106..3e72285a 100644 --- a/ext/kate/gstkatetiger.c +++ b/ext/kate/gstkatetiger.c @@ -73,6 +73,8 @@ * </refsect2> */ +/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/ext/kate/gstkateutil.c b/ext/kate/gstkateutil.c index e25321b0..78f18dae 100644 --- a/ext/kate/gstkateutil.c +++ b/ext/kate/gstkateutil.c @@ -17,6 +17,9 @@ * Boston, MA 02111-1307, USA. */ +/* FIXME: post appropriate GST_ELEMENT_ERROR when returning FLOW_ERROR */ +/* FIXME: shouldn't all this GstKateDecoderBase stuff really be a base class? */ + #ifdef HAVE_CONFIG_H # include "config.h" #endif @@ -25,8 +28,6 @@ #include "gstkate.h" #include "gstkateutil.h" -/* FIXME: shouldn't all this GstKateDecoderBase stuff really be a base class? */ - GstCaps * gst_kate_util_set_header_on_caps (GstElement * element, GstCaps * caps, GList * headers) |