aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.co.uk>2009-07-10 22:21:16 +0800
committerOlivier CrĂȘte <olivier.crete@collabora.co.uk>2009-08-07 01:24:39 +0800
commitb1642e68a321a80d7557863409455375906c14ba (patch)
tree56f6589a7645fda471836feab160c17c80702d24 /data
parent2fe171b03ebf6e2a4f726e456527cacafa1c4194 (diff)
downloadgsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.tar
gsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.tar.gz
gsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.tar.bz2
gsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.tar.lz
gsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.tar.xz
gsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.tar.zst
gsoc2013-empathy-b1642e68a321a80d7557863409455375906c14ba.zip
Put codec preferences in a configuration file
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am4
-rw-r--r--data/codec-preferences36
2 files changed, 40 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index 52108fbe7..94737140f 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -30,6 +30,10 @@ schemas_in_files = empathy.schemas.in
schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
@INTLTOOL_SCHEMAS_RULE@
+streamingprefsdir = $(datadir)/empathy
+streamingprefs_DATA = \
+ codec-preferences
+
if GCONF_SCHEMAS_INSTALL
install-data-local:
if test -z "$(DESTDIR)" ; then \
diff --git a/data/codec-preferences b/data/codec-preferences
new file mode 100644
index 000000000..0cb0910bc
--- /dev/null
+++ b/data/codec-preferences
@@ -0,0 +1,36 @@
+# Favorite audio codecs
+
+[audio/SPEEX:8000]
+clock-rate=8000
+
+[audio/SPEEX:16000]
+clock-rate=16000
+
+[audio/AMR]
+
+[audio/G729]
+
+[audio/ILBC]
+
+# Disabled audio codecs
+
+[audio/DV]
+id=-1
+
+[audio/MPA]
+id=-1
+
+[audio/VORBIS]
+id=-1
+
+[audio/MP3]
+id=-1
+
+
+# Favorite video codecs
+
+[video/H264]
+
+[video/H263]
+
+[video/THEORA]