mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
fix docs by fixing enum typedef
Original commit message from CVS: fix docs by fixing enum typedef
This commit is contained in:
parent
7444b370c5
commit
7b4161583c
3 changed files with 3 additions and 4 deletions
|
@ -194,7 +194,7 @@ typedef struct _GstBufferClass GstBufferClass;
|
||||||
/**
|
/**
|
||||||
* GST_BUFFER_OFFSET_END_IS_VALID:
|
* GST_BUFFER_OFFSET_END_IS_VALID:
|
||||||
* @buffer: the #GstBuffer to check for the end offset
|
* @buffer: the #GstBuffer to check for the end offset
|
||||||
*
|
*
|
||||||
* Tests if the end offset is known.
|
* Tests if the end offset is known.
|
||||||
*
|
*
|
||||||
* Returns: %TRUE for success
|
* Returns: %TRUE for success
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <string.h> /* memcpy */
|
#include <string.h> /* memcpy */
|
||||||
|
|
||||||
#include "gst_private.h"
|
#include "gst_private.h"
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#ifndef __GST_MESSAGE_H__
|
#ifndef __GST_MESSAGE_H__
|
||||||
#define __GST_MESSAGE_H__
|
#define __GST_MESSAGE_H__
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
typedef struct _GstMessage GstMessage;
|
typedef struct _GstMessage GstMessage;
|
||||||
typedef struct _GstMessageClass GstMessageClass;
|
typedef struct _GstMessageClass GstMessageClass;
|
||||||
|
@ -48,7 +48,7 @@ typedef struct _GstMessageClass GstMessageClass;
|
||||||
* @GST_MESSAGE_SEGMENT_DONE: pipeline completed playback of a segment.
|
* @GST_MESSAGE_SEGMENT_DONE: pipeline completed playback of a segment.
|
||||||
* @GST_MESSAGE_ANY: mask for all of the above messages.
|
* @GST_MESSAGE_ANY: mask for all of the above messages.
|
||||||
*/
|
*/
|
||||||
typedef enum _GstMessageType
|
typedef enum
|
||||||
{
|
{
|
||||||
GST_MESSAGE_UNKNOWN = 0,
|
GST_MESSAGE_UNKNOWN = 0,
|
||||||
GST_MESSAGE_EOS = (1 << 0),
|
GST_MESSAGE_EOS = (1 << 0),
|
||||||
|
|
Loading…
Reference in a new issue