mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-12 19:14:16 +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];
|
||||
};
|
||||
|
||||
GST_EXPORT
|
||||
GType gst_audio_aggregator_pad_get_type (void);
|
||||
|
||||
/**************************
|
||||
|
@ -154,12 +155,13 @@ struct _GstAudioAggregatorClass {
|
|||
* GstAggregator methods *
|
||||
************************/
|
||||
|
||||
GST_EXPORT
|
||||
GType gst_audio_aggregator_get_type(void);
|
||||
|
||||
void
|
||||
gst_audio_aggregator_set_sink_caps (GstAudioAggregator * aagg,
|
||||
GstAudioAggregatorPad * pad, GstCaps * caps);
|
||||
|
||||
GST_EXPORT
|
||||
void gst_audio_aggregator_set_sink_caps (GstAudioAggregator * aagg,
|
||||
GstAudioAggregatorPad * pad,
|
||||
GstCaps * caps);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
|
|
@ -377,24 +377,31 @@ struct _GstNonstreamAudioDecoderClass
|
|||
};
|
||||
|
||||
|
||||
GST_EXPORT
|
||||
GType gst_nonstream_audio_decoder_get_type (void);
|
||||
|
||||
|
||||
GST_EXPORT
|
||||
void gst_nonstream_audio_decoder_handle_loop (GstNonstreamAudioDecoder * dec,
|
||||
GstClockTime new_position);
|
||||
|
||||
GST_EXPORT
|
||||
gboolean gst_nonstream_audio_decoder_set_output_format (GstNonstreamAudioDecoder * dec,
|
||||
GstAudioInfo const *audio_info);
|
||||
|
||||
GST_EXPORT
|
||||
gboolean gst_nonstream_audio_decoder_set_output_format_simple (GstNonstreamAudioDecoder * dec,
|
||||
guint sample_rate,
|
||||
GstAudioFormat sample_format,
|
||||
guint num_channels);
|
||||
|
||||
GST_EXPORT
|
||||
void gst_nonstream_audio_decoder_get_downstream_info (GstNonstreamAudioDecoder * dec,
|
||||
GstAudioFormat * format,
|
||||
gint * sample_rate,
|
||||
gint * num_channels);
|
||||
|
||||
GST_EXPORT
|
||||
GstBuffer *gst_nonstream_audio_decoder_allocate_output_buffer (GstNonstreamAudioDecoder * dec,
|
||||
gsize size);
|
||||
|
||||
|
|
Loading…
Reference in a new issue