summaryrefslogtreecommitdiff
path: root/win32
Commit message (Collapse)AuthorAgeFilesLines
* win32: Add a module definitions file for gstfftNirbheek Chauhan2016-03-101-0/+22
|
* Release 1.7.901.7.90Sebastian Dröge2016-03-012-6/+9
|
* win32: remove outdated build cruftTim-Philipp Müller2016-02-2080-13881/+0
| | | | | | This hasn't been touched for generations, doesn't work, and is just causing confusion. We also don't want to maintain these files manually.
* Release 1.7.21.7.2Sebastian Dröge2016-02-195-24/+29
|
* audio-converter: add reset functionWim Taymans2016-01-261-0/+2
|
* win32: Update exportsSebastian Dröge2016-01-181-0/+2
|
* audio: Update exported symbols listSebastian Dröge2016-01-081-1/+1
|
* audio: GstAudioChannelMix -> GstAudioChannelMixerWim Taymans2016-01-081-5/+5
| | | | | Rename the GstAudioChannelMix object to GstAudioChannelMixer because it looks better and to avoid a conflict with a library in -bad.
* sdp: add helper fuctions from/to sdp from/to capsHyunjun Ko2015-12-311-0/+7
| | | | | | | | | | | | | | | <gstsdpmessage.h> GstCaps* gst_sdp_media_get_caps_from_media (const GstSDPMedia *media, gint pt); GstSDPResult gst_sdp_media_set_media_from_caps (const GstCaps* caps, GstSDPMedia *media); gchar * gst_sdp_make_keymgmt (const gchar *uri, const gchar *base64); GstSDPResult gst_sdp_message_attributes_to_caps (GstSDPMessage *msg, GstCaps *caps); GstSDPResult gst_sdp_media_attributes_to_caps (GstSDPMedia *media, GstCaps *caps); <gstmikey.h> GstMIKEYMessage * gst_mikey_message_new_from_caps (GstCaps *caps); gchar * gst_mikey_message_base64_encode (GstMIKEYMessage* msg); https://bugzilla.gnome.org/show_bug.cgi?id=745880
* Release 1.7.11.7.1Sebastian Dröge2015-12-246-11/+184
|
* audio-converter: rework the main processing loopWim Taymans2015-12-161-0/+3
| | | | | | | | | Rework the main processing loop. We now create an audio processing chain from small core functions. This is very similar to how the video-converter core works and allows us to statically calculate an optimal allocation strategy for all possible combinations of operations. Make sure we support non-interleaved data everywhere. Add functions to calculate in and out frames and latency.
* rtspconnection: Support authentication during tunneling setupEvan Callaway2015-12-141-0/+1
| | | | | | | | | | | | | | | gst_rtsp_connection_connect_with_response accepts a response pointer which it fills with the response from setup_tunneling if the connection is configured to be tunneled. The motivation for this is to allow the caller to inspect the response header to determine if additional authentication is required so that the connection can be retried with the appropriate authentication headers. The function prototype of gst_rtsp_connection_connect has been preserved for compatability with existing code and wraps gst_rtsp_connection_connect_with_response. https://bugzilla.gnome.org/show_bug.cgi?id=749596
* videometa: add GstVideoAffineTransformationMetaMatthew Waters2015-11-111-0/+4
| | | | | | | | | Adds a simple 4x4 affine transformations meta for passing arbitrary transformations on buffers. Based on patch by Matthieu Bouron https://bugzilla.gnome.org/show_bug.cgi?id=731791
* audio-converter: move audio converter to audio libsWim Taymans2015-11-061-0/+6
| | | | Move the audio-converter helper to the audio library.
* audio-channel-mix: move channel mixer to audio libsWim Taymans2015-11-061-0/+5
| | | | Move the channel mixer code to the audio library
* defs: update defsWim Taymans2015-11-061-0/+6
|
* audio-channels: rename get_default_maskWim Taymans2015-11-051-1/+1
| | | | | | | | Rename _get_default_mask() to _get_fallback_mask() to make it more clear that the function only provides a fallback if nothing else can be done. Also clarify this in the documentation. API: gst_audio_channel_get_fallback_mask()
* audio-channels: make method to get default channel-maskWim Taymans2015-11-051-0/+1
| | | | | | | Add a new method to get the default channel-mask. Use the new method on audiodecoder and audioconvert. API: gst_audio_channel_get_default_mask()
* codec-utils: Add utilities for Opus caps and the OpusHead headerSebastian Dröge2015-11-031-0/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=757152
* audio: Add GstAudioClippingMeta for specifying clipping on encoded audio buffersSebastian Dröge2015-11-031-0/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=757153
* win32 update exports for new rtp symbolsMatthew Waters2015-10-161-0/+1
|
* win32: Update exports for new audiovisualizer symbolsSebastian Dröge2015-10-021-0/+2
|
* Release 1.6.01.6.0Sebastian Dröge2015-09-252-5/+5
|
* Release 1.5.911.5.91Sebastian Dröge2015-09-182-6/+6
|
* Release 1.5.901.5.90Sebastian Dröge2015-08-194-6/+110
|
* Revert "audiodecoder: expose default query handling function"Thiago Santos2015-08-151-1/+0
| | | | | | | Apparently I forgot how gobject works, there is no need to expose it directly as one can call it from the parent_class pointer This reverts commit 8a64592481dab985ca520a5b1cb394a609275c60.
* Revert "videodecoder: expose default query handling function"Thiago Santos2015-08-151-1/+0
| | | | | | | Apparently I forgot how gobject works, there is no need to expose it directly as one can call it from the parent_class pointer This reverts commit ea9b6a7e3c4eea512650adf530b7f1acb0eccd84.
* audiodecoder: add option to use default pad accept-caps handlingThiago Santos2015-08-151-0/+1
| | | | | | | | | Add gst_audio_decoder_set_use_default_pad_acceptcaps() to allow subclasses to make videodecoder use the default pad acceptcaps handling instead of resorting to the caps query that is, usually, less efficient and unecessary API: gst_audio_decoder_set_use_default_pad_acceptcaps
* videodecoder: add option to use default pad accept-caps handlingThiago Santos2015-08-151-0/+1
| | | | | | | | | Add gst_video_decoder_set_use_default_pad_acceptcaps() to allow subclasses to make videodecoder use the default pad acceptcaps handling instead of resorting to the caps query that is, usually, less efficient and unecessary API: gst_video_decoder_set_use_default_pad_acceptcaps
* videodecoder: expose default query handling functionThiago Santos2015-08-141-0/+1
| | | | | | | | | Subclasses can use it to select what queries they want to handle and forward the rest to the default handling function. API: gst_video_decoder_sink_query_default https://bugzilla.gnome.org/show_bug.cgi?id=753623
* audiodecoder: expose default query handling functionThiago Santos2015-08-141-0/+1
| | | | | | | | | Subclasses can use it to select what queries they want to handle and forward the rest to the default handling function. API: gst_audio_decoder_sink_query_default https://bugzilla.gnome.org/show_bug.cgi?id=753623
* Revert "win32 def: Remove video flags symbol that don't exist"Sebastian Dröge2015-07-091-0/+4
| | | | | | This reverts commit b20cc6a02a007521eabceeceb60356e5a252f38a. They are actually there in the autogenerated enum header/source file.
* win32 def: Remove video flags symbol that don't existNicolas Dufresne2015-07-091-4/+0
| | | | | There has been a some refactoring and these symbols don't exist anynmore. So remove it from the win32 def. This should fix distcheck.
* video: Add some more GTypes for enumsSebastian Dröge2015-07-071-0/+4
|
* docs: Add new symbols to the docs and .def filesSebastian Dröge2015-07-061-0/+4
|
* Release 1.5.21.5.2Sebastian Dröge2015-06-244-6/+122
|
* video: Add missing new symbol to win32 def fileNicolas Dufresne2015-06-181-0/+1
| | | | Fixes make distcheck
* videoencoder: Add gst_video_encoder_set_min_pts()Matej Knopp2015-06-121-0/+1
| | | | | | | For streams with reordered frames this can be used to ensure that there is enough time to accomodate first DTS, which may be less than first PTS https://bugzilla.gnome.org/show_bug.cgi?id=740575
* Update .def file for new APITim-Philipp Müller2015-06-121-0/+1
|
* video: Add multiview/stereo supportJan Schmidt2015-06-111-0/+12
| | | | | | | | | | | | Add flags and enums to support multiview signalling in GstVideoInfo and GstVideoFrame, and the caps serialisation and deserialisation. videoencoder: Copy multiview settings from reference input state Add gst_video_multiview_* support API and GstVideoMultiviewMeta meta https://bugzilla.gnome.org/show_bug.cgi?id=611157
* win32: Update defs fileEdward Hervey2015-06-101-0/+2
|
* Update win32 exportsJan Schmidt2015-06-091-0/+2
|
* Release 1.5.11.5.1Sebastian Dröge2015-06-078-9/+414
|
* rtcpbuffer: Improve documentation of new functions a bitSebastian Dröge2015-06-051-0/+2
| | | | Also actually add them to the documentation.
* win32: Update def file for new encoding APIEdward Hervey2015-06-021-0/+2
|
* video: Make gst_buffer_get_video_meta() a real function, Return lowest idJan Schmidt2015-05-301-0/+1
| | | | | | Instead of returning the first video meta found on a buffer, return the one with the lowest id (which is usually the same thing, except on multi-view buffers)
* win32: Update exportsSebastian Dröge2015-05-202-0/+9
|
* win32: update .def file for new APITim-Philipp Müller2015-05-191-1/+2
|
* discoverer: Add serialization methods.Mathieu Duponchelle2015-05-191-0/+2
| | | | | | | | | | | | [API] gst_discoverer_info_to_variant [API] gst_discoverer_info_from_variant [API] GstDiscovererSerializeFlags + Serializes as a GVariant + Adds a test + Does not serialize potential GstToc (s) https://bugzilla.gnome.org/show_bug.cgi?id=748814
* video: Update win32 exports for new libgstvideo APIJan Schmidt2015-05-101-0/+5
|