diff --git a/ChangeLog b/ChangeLog index ea690f388c..4c4626af9d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-11-19 Tim-Philipp Müller + + * 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 * gst/videotestsrc/Makefile.am: diff --git a/gst-libs/gst/rtp/gstbasertpaudiopayload.h b/gst-libs/gst/rtp/gstbasertpaudiopayload.h index 56c3b62dd6..5c212a3d0f 100644 --- a/gst-libs/gst/rtp/gstbasertpaudiopayload.h +++ b/gst-libs/gst/rtp/gstbasertpaudiopayload.h @@ -45,10 +45,10 @@ typedef struct _GstBaseRTPAudioPayloadPrivate GstBaseRTPAudioPayloadPrivate; struct _GstBaseRTPAudioPayload { - GstBaseRTPAudioPayloadPrivate *priv; - GstBaseRTPPayload payload; + GstBaseRTPAudioPayloadPrivate *priv; + GstClockTime base_ts; gint frame_size; gint frame_duration;