summaryrefslogtreecommitdiff
path: root/farstream
Commit message (Collapse)AuthorAgeFilesLines
* gir: Add package deps to ensure the GIR build worksOlivier Crête2018-11-011-0/+1
|
* farstream: Quell warning in interspection generationOlivier Crête2018-11-011-1/+2
|
* Update common/ to latestOlivier Crête2018-09-191-3/+4
|
* Enable building static FsPluginsNicolas Dufresne2015-02-252-3/+70
| | | | | | | | | | | | | | | | | This required change FS_INIT_PLUGIN() macro. It's now taking name and type argumenet. This is a slight API break, but there never existed any external plugins. Also, already built plugins should not be affected since the symbol remains the same. Note also that plugin are no longer unloadable, it was already not well supported. Instead of adding loads of if, we simply register the module types as static (just like GStreamer does). To register static plugin, you can declare it's registration function using FS_PLUGIN_STATIC_DECLARE(name), and then in your code call the function using FS_PLUGIN_STATIC_REGISTER(name). https://bugs.freedesktop.org/show_bug.cgi?id=89287
* stream: Add "require-encryption" parameterOlivier Crête2015-02-251-1/+19
| | | | | | | If it is set to TRUE, then all buffers will be dropped before the decryption key is set. https://bugs.freedesktop.org/show_bug.cgi?id=89288
* Fix GIR annotations to remove deprecated stylesOlivier Crête2015-01-283-25/+7
|
* Merge branch 'branch-0.2.6'Olivier Crête2015-01-271-2/+13
|\
| * Add ICE-TCP candidatesJakub Adam2014-10-091-2/+13
| | | | | | | | Also to the nice transmitter
* | fs-session: Reduce padding because added set_encryption_parametersOlivier Crête2015-01-131-1/+1
| |
* | introspection: Call g-ir-scanner correctlyEvan Nemerson2014-11-241-2/+4
| | | | | | | | | | | | | | | | | | This provides a symbol prefix separate from the identifier prefix, corrects the identifier prefix to not include the trailing underscore, specifies the exported pkg-config file, and provides a list of C headers. https://bugs.freedesktop.org/show_bug.cgi?id=86589
* | Fix clang warningsOlivier Crête2014-10-283-4/+4
|/ | | | https://bugs.freedesktop.org/show_bug.cgi?id=85565
* lib: Add parameters to set encryption and decryption parametersOlivier Crête2014-09-185-13/+133
|
* transmitter: Remove recvonly-filterOlivier Crête2014-09-182-53/+0
| | | | It was pretty much useless anyway.
* Add Application Media typeOlivier Crête2014-09-183-1/+18
|
* session: Add API to set the allowed capsOlivier Crête2014-09-183-3/+91
|
* fs-element-added-notifier: do not unref elements from already added bins ↵George Kiagiadakis2014-07-221-2/+0
| | | | | | when setting a keyfile The FsElementAddedNotifier does not own a reference to these elements.
* Fix some mismatched / redundant <para> gtk-doc tagsIain Lane2014-05-063-6/+6
| | | | | | | | | gtk-doc 1.20 got more strict about correctness here wrt. balanced tags. Also bump the relevant gtk-doc requirement, these tags were added for a reason back then. https://bugs.freedesktop.org/show_bug.cgi?id=76458
* rtp: Check both variants, not only one!Olivier Crête2014-05-041-1/+1
|
* Fix documentationOlivier Crête2014-05-023-3/+34
|
* Misc win32 portability fixesOlivier Crête2013-04-041-1/+1
| | | | Based on a patch by Conrad Poelman
* session: Add API to set the transmitter parameters as a GHashTableOlivier Crête2013-03-262-0/+104
|
* candidate: Add helper function for pygiOlivier Crête2013-03-262-0/+19
| | | | This way, it can set a FsCandidateList to a GValue
* candidate: Allow various elements to be NULLOlivier Crête2013-03-261-5/+5
|
* fs-codec: plug memory leakHavard Graff2013-03-261-2/+0
| | | | encoding_name is already g_strdup'ed in codec_new
* Remove deprecated GStaticMutex usageOlivier Crête2013-03-221-7/+7
|
* build: Fix building with the gold linker by referencing gmodule-2.0Emanuele Aina2013-02-251-0/+2
| | | | | | | | | | | With the binutils-gold linker the '--no-copy-dt-needed-entries' flag is active by default and using any symbol from indirectly loaded libraries will result in undefined reference errors. Add to the libfarstream target the AG_GST_GLIB_CHECK-generated GLIB_LIBS variable, which references gmodule-no-export-2.0. https://bugs.freedesktop.org/show_bug.cgi?id=61268
* Use the generic marshallers instead of generating themOlivier Crête2013-02-057-62/+11
|
* elementaddednotifier: Add signal id when setting default properties tooOlivier Crête2012-10-022-4/+8
|
* elementaddednotifier: Return the signal ID when adding from a keyfileOlivier Crête2012-10-022-5/+8
|
* elementaddednotifier: Free keyfile using GClosure notifiersOlivier Crête2012-10-021-9/+3
|
* elementaddednotifier: Chain up finalizeOlivier Crête2012-10-021-0/+2
|
* elementaddednotifier: Set keyfile properties on already-added bins tooOlivier Crête2012-10-021-3/+42
| | | | Iterate through already added bins to add element properties
* elemendaddednotifier: Annotate the fact it takes ownership of the keyfileOlivier Crête2012-10-021-1/+1
|
* utils: Don't crash if trying to get default properties of a factory-less elementOlivier Crête2012-10-021-0/+3
|
* Make fs_conference_debug category symbol privateOlivier Crête2012-10-026-8/+8
| | | | Don't export it in the dll
* stream: Keep ref to src pads for iterator to not breakOlivier Crête2012-10-021-5/+13
|
* Port to GLib 2.32Olivier Crête2012-09-253-11/+11
|
* Add some allow-none annotationsOlivier Crête2012-09-202-10/+13
|
* Re-base onto GObjectOlivier Crête2012-09-1811-16/+16
|
* candidate: Add fs_candidate_new_full()Olivier Crête2012-09-142-6/+78
| | | | Without it, introspection can not set the other field
* Replace FS_MAJORMINOR with FS_APIVERSIONOlivier Crête2012-09-112-25/+25
|
* Merge branch 'master' into gstreamer-0.11Olivier Crête2012-08-281-0/+1
|\
| * Add dependency to enable parallel build of introspectionOlivier Crête2012-08-141-0/+1
| |
* | Fix annotations to make new gir happierOlivier Crête2012-08-0711-29/+23
| |
* | Replace GST_MAJORMINOR with GST_API_VERSIONOlivier Crête2012-08-071-1/+1
| |
* | Revert "Add breakpoints in error functions for easier debugging"Olivier Crête2012-08-062-2/+0
| | | | | | | | | | | | Because the unit tests fail on the breakpoints :-( This reverts commit 9fac4e2b35fccc976cf1d9ed202030beae091e66.
* | Add breakpoints in error functions for easier debuggingOlivier Crête2012-07-312-0/+2
| |
* | Port to GStreamer 0.11Olivier Crête2012-07-315-70/+81
|/
* fs-codec: Remove outdated TODOOlivier Crête2012-06-291-2/+0
|
* Gtk-doc tags belong after the descriptionOlivier Crête2012-05-252-18/+13
|