mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +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>
|
||||
|
||||
* gst/videotestsrc/Makefile.am:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue