diff options
author | Olivier CrĂȘte <olivier.crete@collabora.co.uk> | 2009-07-10 22:41:27 +0800 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.co.uk> | 2009-08-07 01:24:40 +0800 |
commit | a885bc90fd4c27676090a59bb615b14258ff8579 (patch) | |
tree | 063db3c68744f97da574066dc88982048459dd40 /data | |
parent | b1642e68a321a80d7557863409455375906c14ba (diff) | |
download | gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.tar gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.tar.gz gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.tar.bz2 gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.tar.lz gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.tar.xz gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.tar.zst gsoc2013-empathy-a885bc90fd4c27676090a59bb615b14258ff8579.zip |
Make it possible to set element properties from a config file
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 3 | ||||
-rw-r--r-- | data/element-properties | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 94737140f..81ca5a7b9 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -32,7 +32,8 @@ schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) streamingprefsdir = $(datadir)/empathy streamingprefs_DATA = \ - codec-preferences + codec-preferences \ + element-properties if GCONF_SCHEMAS_INSTALL install-data-local: diff --git a/data/element-properties b/data/element-properties new file mode 100644 index 000000000..e8bd9c084 --- /dev/null +++ b/data/element-properties @@ -0,0 +1,17 @@ +# Put the desired properties in the style of +# +# [element name] +# prop1=val1 + +[gstrtpbin] +latency=100 + +[x264enc] +byte-stream=1 +bframes=0 +b-adapt=0 +cabac=0 +dct8x8=0 + +[ffenc_h263] +rtp-payload-size=1 |