mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
gst-libs/gst/rtp/gstbasertpaudiopayload.h: Fix GstBaseRTPAudioPayload structure so the whole GObject inheritance busi...
Original commit message from CVS: * gst-libs/gst/rtp/gstbasertpaudiopayload.h: Fix GstBaseRTPAudioPayload structure so the whole GObject inheritance business actually works (parent class instance structure must always come first in the derived class instance structure).
This commit is contained in:
parent
b194c94268
commit
23df03b763
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst-libs/gst/rtp/gstbasertpaudiopayload.h:
|
||||||
|
Fix GstBaseRTPAudioPayload structure so the whole GObject
|
||||||
|
inheritance business actually works (parent class instance structure
|
||||||
|
must always come first in the derived class instance structure).
|
||||||
|
|
||||||
2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
|
2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/videotestsrc/Makefile.am:
|
* gst/videotestsrc/Makefile.am:
|
||||||
|
|
|
@ -45,10 +45,10 @@ typedef struct _GstBaseRTPAudioPayloadPrivate GstBaseRTPAudioPayloadPrivate;
|
||||||
|
|
||||||
struct _GstBaseRTPAudioPayload
|
struct _GstBaseRTPAudioPayload
|
||||||
{
|
{
|
||||||
GstBaseRTPAudioPayloadPrivate *priv;
|
|
||||||
|
|
||||||
GstBaseRTPPayload payload;
|
GstBaseRTPPayload payload;
|
||||||
|
|
||||||
|
GstBaseRTPAudioPayloadPrivate *priv;
|
||||||
|
|
||||||
GstClockTime base_ts;
|
GstClockTime base_ts;
|
||||||
gint frame_size;
|
gint frame_size;
|
||||||
gint frame_duration;
|
gint frame_duration;
|
||||||
|
|
Loading…
Reference in a new issue