diff options
author | z3bra <contactatz3bradotorg> | 2016-11-02 08:53:46 +0100 |
---|---|---|
committer | z3bra <contactatz3bradotorg> | 2016-11-08 16:47:51 +0100 |
commit | 16b2d6e514d8cbf583d386e3612474cafc05f318 (patch) | |
tree | e96d20b783c111f20a6fed01c59284104cc8948d /config.def.h | |
parent | 6a8af21a5cec1e317618799bb7be8054fb1b43be (diff) |
Get rid of old ToxAvCSettings and use constants instead
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 2fb9b16..74589ed 100644 --- a/config.def.h +++ b/config.def.h @@ -11,10 +11,15 @@ /* Audio settings definition */ #define AUDIOCHANNELS 1 -#define AUDIOBITRATE 32 +#define AUDIOBITRATE 32000 #define AUDIOFRAME 20 #define AUDIOSAMPLERATE 48000 +/* Video settings definition */ +#define VIDEOWIDTH 1280 +#define VIDEOHEIGHT 720 +#define VIDEOBITRATE 2500 + static char *savefile = ".ratox.tox"; static int encryptsavefile = 0; |