mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
bitreader, bytereader: add some FIXME 0.11 comments and fix indenting
This commit is contained in:
parent
4c103b00b5
commit
96a565bdca
3 changed files with 10 additions and 0 deletions
|
@ -26,6 +26,8 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
/* FIXME 0.11: inline everything and get rid of non-inlined functions */
|
||||
|
||||
/**
|
||||
* SECTION:gstbitreader
|
||||
* @short_description: Reads any number of bits from a memory buffer
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
|
||||
/* FIXME: inline functions */
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
/* FIXME 0.11: inline everything and get rid of non-inlined functions */
|
||||
|
||||
/**
|
||||
* SECTION:gstbytereader
|
||||
* @short_description: Reads different integer, string and floating point
|
||||
|
@ -712,6 +714,8 @@ gst_byte_reader_peek_##name (GstByteReader * reader, type * val) \
|
|||
return _gst_byte_reader_peek_##name##_inline (reader, val); \
|
||||
}
|
||||
|
||||
/* *INDENT-OFF* */
|
||||
|
||||
GST_BYTE_READER_PEEK_GET(8,guint8,uint8)
|
||||
GST_BYTE_READER_PEEK_GET(8,gint8,int8)
|
||||
|
||||
|
@ -844,6 +848,8 @@ GST_BYTE_READER_PEEK_GET(32,gfloat,float32_be)
|
|||
GST_BYTE_READER_PEEK_GET(64,gdouble,float64_le)
|
||||
GST_BYTE_READER_PEEK_GET(64,gdouble,float64_be)
|
||||
|
||||
/* *INDENT-ON* */
|
||||
|
||||
/**
|
||||
* gst_byte_reader_get_data:
|
||||
* @reader: a #GstByteReader instance
|
||||
|
|
Loading…
Reference in a new issue