summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rtpsubstream: Don't free codec after setting it inside substreamfarstream-0.1Olivier Crête2013-03-291-8/+6
| | | | Bug discovered by Havard Graff
* rtpsubstream: Free lock to prevent leakOlivier Crête2013-03-211-0/+2
| | | | Based on patch from Havard Graff
* fs-rtp-stream: plug session-leakHavard Graff2013-03-211-0/+3
| | | | | It might be prettier to use goto and have one point of exit with one unref?
* fs-rtp-substream: plug capsleakHavard Graff2013-03-211-0/+1
|
* fs-codec: plug memory leakHavard Graff2013-03-211-2/+0
| | | | encoding_name is already g_strdup'ed in codec_new
* python: Don't hide fs_session/stream_destroyOlivier Crête2013-03-181-1/+0
|
* Add dependency to enable parallel build of introspectionOlivier Crête2012-08-141-0/+1
|
* fs-codec: Remove outdated TODOOlivier Crête2012-06-291-2/+0
|
* Gtk-doc tags belong after the descriptionOlivier Crête2012-05-252-18/+13
|
* The right macro is GLIB_VERSION_MAX_ALLOWEDGuillaume Desmottes2012-04-041-1/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=48285
* tests: Remove used of deprecated g_strcasecmpOlivier Crête2012-03-261-1/+1
|
* tests: Link against libgstbase when it is usedOlivier Crête2012-03-261-0/+2
|
* rtpdiscovercodecs: Typecast factory into feature to make compiler happyOlivier Crête2012-03-231-1/+2
|
* Version 0.1.2.1Olivier Crête2012-03-231-1/+1
|
* Version 0.1.20.1.2Olivier Crête2012-03-232-2/+15
|
* Add empty overrides file as the new gtkdoc creates one and to make distcheck ↵Olivier Crête2012-03-233-3/+2
| | | | happy
* Ignore rank==0 from auto discoveryOlivier Crête2012-03-231-1/+5
|
* tests: Make debug messages into GST_DEBUGOlivier Crête2012-03-231-3/+3
|
* Update doc generator from commonOlivier Crête2012-03-231-2/+13
|
* Revert "shm-stream-transmitter: Add property to control the buffer-time"Olivier Crête2012-03-233-32/+2
| | | | | | | | This reverts commit 7a8dd5ef57afc9dd279366b6c07a38c30493f927. Because the patch in shmsink was bad and did not deal with timestamps going backwards. We must re-apply this patch once a new upstream GStreamer has been released.
* rtpcodecnego: Add more debugs on local codec list creationOlivier Crête2012-03-211-0/+7
|
* rtpdiscovercodecs: Remove duplicate codecsOlivier Crête2012-03-211-0/+29
| | | | | Only keep the first codec if there is more than one way to produce the same RTP codec
* Set better latency/buffer time for pulse src/sinkNicolas Dufresne2012-03-151-3/+4
|
* Add default element properties for rawconferenceNicolas Dufresne2012-03-152-0/+20
|
* example: Call the right functionOlivier Crête2012-02-291-1/+1
|
* Update glade fileOlivier Crête2012-02-291-97/+115
|
* Require GLib 2.30, do not allow APIs added after and ignore later deprecationsOlivier Crête2012-02-292-2/+5
|
* Don't emit element-added signal without a parentOlivier Crête2012-02-281-1/+2
|
* rtpcodecnego: Ignore config while comparing send codecsOlivier Crête2012-02-281-3/+10
|
* Remove check for gst <0.13Olivier Crête2012-02-282-12/+0
|
* Update commonOlivier Crête2012-02-222-90/+117
|
* Add "do-timestamp" property to the transmittersOlivier Crête2012-02-216-12/+87
| | | | | Make it possible for the "raw" plugin to not have the transmitter put timestamps on the buffers.
* Version 0.1.1.1Olivier Crête2012-02-201-1/+1
|
* Version 0.1.10.1.1Olivier Crête2012-02-202-1/+44
|
* Fix python examplesOlivier Crête2012-02-203-32/+24
|
* Fix python bindingsOlivier Crête2012-02-208-23/+112
|
* Update defsOlivier Crête2012-02-201-0/+118
|
* Add override for fs_stream_set_transmitterOlivier Crête2012-02-202-1/+111
|
* python: Use force for forceOlivier Crête2012-02-201-1/+1
|
* Rename fs2-gui-user-frame.ui to fs-..Olivier Crête2012-02-151-0/+0
|
* rtpsession: Wait until stream is destroyed to flush transmittersOlivier Crête2012-02-101-7/+7
|
* session: Remove extra ; where it doesn't belongOlivier Crête2012-02-101-1/+1
|
* Require new gst-plugins-bad, it's needed for DTMF to work correctlyOlivier Crête2012-02-101-3/+3
|
* Update GIR annotationsOlivier Crête2012-01-105-13/+18
|
* Add stream message parsers to the docOlivier Crête2012-01-101-0/+6
|
* Move the FsSession's conference property to the base classOlivier Crête2012-01-104-25/+24
|
* rtpsession: Set boolean property to exactly "1" if trueOlivier Crête2012-01-091-1/+1
| | | | It seems boolean properties don't accept values > 1
* Fix fs_stream_parse_component_state_changed()Jonathon Jongsma2011-12-201-4/+4
| | | | | Check for the right message name and parse the state as an enum, rather than a uint.
* Improve error message for missing stream transmitterJonathon Jongsma2011-12-161-1/+1
|
* shm-stream-transmitter: Add property to control the buffer-timeSjoerd Simons2011-11-143-2/+32
| | | | | | | | | | | Allow the transmitter to buffer how much can be maximally queued in the shmsink before blocking. Default to 20 miliseconds. For audio network packets tend to be around 20ms is size, so 20ms is a suitable size for audio. For video, 20 miliseconds is less then one frame at 30 fps, so with 20ms as default at most one video frame will be queued up in the shm sink.