mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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:
parent
c5b612edef
commit
140c4dd060
3 changed files with 14 additions and 4 deletions
|
@ -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>
|
2004-01-29 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
* gst/elements/gstfilesrc.c: (gst_filesrc_get),
|
* gst/elements/gstfilesrc.c: (gst_filesrc_get),
|
||||||
|
|
|
@ -292,7 +292,8 @@ framerate = 0 - MAXFLOAT (FLOAT)
|
||||||
MIME type: video/x-theora
|
MIME type: video/x-theora
|
||||||
Properties:
|
Properties:
|
||||||
Encoder:
|
Encoder:
|
||||||
Decoder: ffdec_vp3
|
Decoder:
|
||||||
|
This is the raw stream that comes out of an ogg file.
|
||||||
|
|
||||||
15 - Huffyuv
|
15 - Huffyuv
|
||||||
MIME type: video/x-huffyuv
|
MIME type: video/x-huffyuv
|
||||||
|
|
|
@ -140,11 +140,13 @@ typedef enum {
|
||||||
#define GST_ELEMENT_PADS(obj) ((obj)->pads)
|
#define GST_ELEMENT_PADS(obj) ((obj)->pads)
|
||||||
|
|
||||||
#define GST_ELEMENT_ERROR(el, domain, code, message, debug) G_STMT_START { \
|
#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_element_error_full (GST_ELEMENT(el), \
|
||||||
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
|
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
|
||||||
_gst_element_error_printf message, \
|
__msg, __dbg, __FILE__, GST_FUNCTION, __LINE__); \
|
||||||
_gst_element_error_printf debug, \
|
} G_STMT_END
|
||||||
__FILE__, GST_FUNCTION, __LINE__); } G_STMT_END
|
|
||||||
|
|
||||||
typedef struct _GstElementFactory GstElementFactory;
|
typedef struct _GstElementFactory GstElementFactory;
|
||||||
typedef struct _GstElementFactoryClass GstElementFactoryClass;
|
typedef struct _GstElementFactoryClass GstElementFactoryClass;
|
||||||
|
|
Loading…
Reference in a new issue