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:
Tim-Philipp Müller 2006-11-19 17:07:34 +00:00
parent b194c94268
commit 23df03b763
2 changed files with 9 additions and 2 deletions

View file

@ -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:

View file

@ -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;