summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2018-02-10 20:46:36 +0100
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2018-02-10 20:46:36 +0100
commit998b7e43af9c535a167e3063aea4b0b232639662 (patch)
tree04a2011938cd0100911052753283c6506d9fc015 /include
parent246e2b01accd5f6936bacd5c6092339b228d0150 (diff)
config: add configurable video pixel format
config: videnc_format yuv420p # yuv420p, yuv444p, ... The default pixel format is still YUV420P
Diffstat (limited to 'include')
-rw-r--r--include/baresip.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/baresip.h b/include/baresip.h
index 1e7e862..5ca2759 100644
--- a/include/baresip.h
+++ b/include/baresip.h
@@ -221,6 +221,7 @@ struct config_video {
uint32_t bitrate; /**< Encoder bitrate in [bit/s] */
uint32_t fps; /**< Video framerate */
bool fullscreen; /**< Enable fullscreen display */
+ int enc_fmt; /**< Encoder pixelfmt (enum vidfmt) */
};
#endif