docs/random/mimetypes: correct Theora information

Original commit message from CVS:
2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>

* docs/random/mimetypes:
correct Theora information
* gst/gstelement.h:
make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
This commit is contained in:
Benjamin Otte 2004-01-30 03:54:08 +00:00
parent c5b612edef
commit 140c4dd060
3 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
* docs/random/mimetypes:
correct Theora information
* gst/gstelement.h:
make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
2004-01-29 Julien MOUTTE <julien@moutte.net>
* gst/elements/gstfilesrc.c: (gst_filesrc_get),

View file

@ -292,7 +292,8 @@ framerate = 0 - MAXFLOAT (FLOAT)
MIME type: video/x-theora
Properties:
Encoder:
Decoder: ffdec_vp3
Decoder:
This is the raw stream that comes out of an ogg file.
15 - Huffyuv
MIME type: video/x-huffyuv

View file

@ -140,11 +140,13 @@ typedef enum {
#define GST_ELEMENT_PADS(obj) ((obj)->pads)
#define GST_ELEMENT_ERROR(el, domain, code, message, debug) G_STMT_START { \
gchar *__msg = _gst_element_error_printf message; \
gchar *__dbg = _gst_element_error_printf debug; \
GST_ERROR_OBJECT (el, "%s", __dbg); \
gst_element_error_full (GST_ELEMENT(el), \
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
_gst_element_error_printf message, \
_gst_element_error_printf debug, \
__FILE__, GST_FUNCTION, __LINE__); } G_STMT_END
__msg, __dbg, __FILE__, GST_FUNCTION, __LINE__); \
} G_STMT_END
typedef struct _GstElementFactory GstElementFactory;
typedef struct _GstElementFactoryClass GstElementFactoryClass;