summaryrefslogtreecommitdiff
path: root/toxav
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-05-16 23:04:10 +0100
committeriphydf <iphydf@users.noreply.github.com>2020-05-17 18:16:42 +0100
commit03a511482ffa643a636cd5bcce596f110ca2d8e0 (patch)
treef984d78add7a716a8451907aecbbcdcb2dff690c /toxav
parentfe8e0fb8fa46a815e89e3722a7c92b35181c2ce8 (diff)
Format comments according to tokstyle's requirements.
Diffstat (limited to 'toxav')
-rw-r--r--toxav/toxav.c8
-rw-r--r--toxav/video.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/toxav/toxav.c b/toxav/toxav.c
index 0ecf8259..2e2e8b07 100644
--- a/toxav/toxav.c
+++ b/toxav/toxav.c
@@ -30,10 +30,10 @@
30#define VIDEO_SEND_X_KEYFRAMES_FIRST 7 // force the first n frames to be keyframes! 30#define VIDEO_SEND_X_KEYFRAMES_FIRST 7 // force the first n frames to be keyframes!
31 31
32/* 32/*
33VPX_DL_REALTIME (1) deadline parameter analogous to VPx REALTIME mode. 33 * VPX_DL_REALTIME (1) deadline parameter analogous to VPx REALTIME mode.
34VPX_DL_GOOD_QUALITY (1000000) deadline parameter analogous to VPx GOOD QUALITY mode. 34 * VPX_DL_GOOD_QUALITY (1000000) deadline parameter analogous to VPx GOOD QUALITY mode.
35VPX_DL_BEST_QUALITY (0) deadline parameter analogous to VPx BEST QUALITY mode. 35 * VPX_DL_BEST_QUALITY (0) deadline parameter analogous to VPx BEST QUALITY mode.
36*/ 36 */
37 37
38typedef struct ToxAVCall_s { 38typedef struct ToxAVCall_s {
39 ToxAV *av; 39 ToxAV *av;
diff --git a/toxav/video.c b/toxav/video.c
index 3d3714eb..56be17ab 100644
--- a/toxav/video.c
+++ b/toxav/video.c
@@ -237,10 +237,10 @@ VCSession *vc_new(Mono_Time *mono_time, const Logger *log, ToxAV *av, uint32_t f
237 } 237 }
238 238
239 /* 239 /*
240 VPX_CTRL_USE_TYPE(VP8E_SET_NOISE_SENSITIVITY, unsigned int) 240 * VPX_CTRL_USE_TYPE(VP8E_SET_NOISE_SENSITIVITY, unsigned int)
241 control function to set noise sensitivity 241 * control function to set noise sensitivity
242 0: off, 1: OnYOnly, 2: OnYUV, 3: OnYUVAggressive, 4: Adaptive 242 * 0: off, 1: OnYOnly, 2: OnYUV, 3: OnYUVAggressive, 4: Adaptive
243 */ 243 */
244#if 0 244#if 0
245 rc = vpx_codec_control(vc->encoder, VP8E_SET_NOISE_SENSITIVITY, 2); 245 rc = vpx_codec_control(vc->encoder, VP8E_SET_NOISE_SENSITIVITY, 2);
246 246