mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 10:43:55 +00:00
audio: mark symbols explicitly for export with GST_EXPORT
This commit is contained in:
parent
97e1fb6376
commit
859f96615f
2 changed files with 13 additions and 4 deletions
|
@ -93,6 +93,7 @@ struct _GstAudioAggregatorPadClass
|
||||||
gpointer _gst_reserved[GST_PADDING];
|
gpointer _gst_reserved[GST_PADDING];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GType gst_audio_aggregator_pad_get_type (void);
|
GType gst_audio_aggregator_pad_get_type (void);
|
||||||
|
|
||||||
/**************************
|
/**************************
|
||||||
|
@ -154,12 +155,13 @@ struct _GstAudioAggregatorClass {
|
||||||
* GstAggregator methods *
|
* GstAggregator methods *
|
||||||
************************/
|
************************/
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GType gst_audio_aggregator_get_type(void);
|
GType gst_audio_aggregator_get_type(void);
|
||||||
|
|
||||||
void
|
GST_EXPORT
|
||||||
gst_audio_aggregator_set_sink_caps (GstAudioAggregator * aagg,
|
void gst_audio_aggregator_set_sink_caps (GstAudioAggregator * aagg,
|
||||||
GstAudioAggregatorPad * pad, GstCaps * caps);
|
GstAudioAggregatorPad * pad,
|
||||||
|
GstCaps * caps);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
|
@ -377,24 +377,31 @@ struct _GstNonstreamAudioDecoderClass
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GType gst_nonstream_audio_decoder_get_type (void);
|
GType gst_nonstream_audio_decoder_get_type (void);
|
||||||
|
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
void gst_nonstream_audio_decoder_handle_loop (GstNonstreamAudioDecoder * dec,
|
void gst_nonstream_audio_decoder_handle_loop (GstNonstreamAudioDecoder * dec,
|
||||||
GstClockTime new_position);
|
GstClockTime new_position);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
gboolean gst_nonstream_audio_decoder_set_output_format (GstNonstreamAudioDecoder * dec,
|
gboolean gst_nonstream_audio_decoder_set_output_format (GstNonstreamAudioDecoder * dec,
|
||||||
GstAudioInfo const *audio_info);
|
GstAudioInfo const *audio_info);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
gboolean gst_nonstream_audio_decoder_set_output_format_simple (GstNonstreamAudioDecoder * dec,
|
gboolean gst_nonstream_audio_decoder_set_output_format_simple (GstNonstreamAudioDecoder * dec,
|
||||||
guint sample_rate,
|
guint sample_rate,
|
||||||
GstAudioFormat sample_format,
|
GstAudioFormat sample_format,
|
||||||
guint num_channels);
|
guint num_channels);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
void gst_nonstream_audio_decoder_get_downstream_info (GstNonstreamAudioDecoder * dec,
|
void gst_nonstream_audio_decoder_get_downstream_info (GstNonstreamAudioDecoder * dec,
|
||||||
GstAudioFormat * format,
|
GstAudioFormat * format,
|
||||||
gint * sample_rate,
|
gint * sample_rate,
|
||||||
gint * num_channels);
|
gint * num_channels);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GstBuffer *gst_nonstream_audio_decoder_allocate_output_buffer (GstNonstreamAudioDecoder * dec,
|
GstBuffer *gst_nonstream_audio_decoder_allocate_output_buffer (GstNonstreamAudioDecoder * dec,
|
||||||
gsize size);
|
gsize size);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue