Skip to content

Commit 6f16b5f

Browse files
committed
chore(toxav): use realtime deadline for vp8 encoder
Technically all this does is choose a quality based on frame duration, which we always set to 1, and as such is always realtime. (In same timebase as pts, which we use as a frame counter...) Also no deadline for decoder. (documentation tells us its ignored)
1 parent 9dcc2f5 commit 6f16b5f

File tree

2 files changed

+5
-34
lines changed

2 files changed

+5
-34
lines changed

toxav/toxav.c

+4-12
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,8 @@
2424
#include "../toxcore/tox_struct.h" // IWYU pragma: keep
2525
#include "../toxcore/util.h"
2626

27-
// TODO(zoff99): don't hardcode this, let the application choose it
28-
// VPX Info: Time to spend encoding, in microseconds (it's a *soft* deadline)
29-
#define WANTED_MAX_ENCODER_FPS 40
30-
#define MAX_ENCODE_TIME_US (1000000 / WANTED_MAX_ENCODER_FPS) // to allow x fps
31-
3227
#define VIDEO_SEND_X_KEYFRAMES_FIRST 7 // force the first n frames to be keyframes!
3328

34-
/*
35-
* VPX_DL_REALTIME (1) deadline parameter analogous to VPx REALTIME mode.
36-
* VPX_DL_GOOD_QUALITY (1000000) deadline parameter analogous to VPx GOOD QUALITY mode.
37-
* VPX_DL_BEST_QUALITY (0) deadline parameter analogous to VPx BEST QUALITY mode.
38-
*/
39-
4029
// iteration interval that is used when no call is active
4130
#define IDLE_ITERATION_INTERVAL_MS 200
4231

@@ -1086,8 +1075,11 @@ bool toxav_video_send_frame(ToxAV *av, uint32_t friend_number, uint16_t width, u
10861075
memcpy(img.planes[VPX_PLANE_U], u, (width / 2) * (height / 2));
10871076
memcpy(img.planes[VPX_PLANE_V], v, (width / 2) * (height / 2));
10881077

1078+
// TODO(zoff99): don't hardcode this, let the application choose it
1079+
const unsigned long deadline = VPX_DL_REALTIME;
1080+
10891081
const vpx_codec_err_t vrc = vpx_codec_encode(call->video->encoder, &img,
1090-
call->video->frame_counter, 1, vpx_encode_flags, MAX_ENCODE_TIME_US);
1082+
call->video->frame_counter, 1, vpx_encode_flags, deadline);
10911083

10921084
vpx_img_free(&img);
10931085

toxav/video.c

+1-22
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,6 @@
1515
#include "../toxcore/logger.h"
1616
#include "../toxcore/mono_time.h"
1717

18-
/**
19-
* Soft deadline the decoder should attempt to meet, in "us" (microseconds).
20-
* Set to zero for unlimited.
21-
*
22-
* By convention, the value 1 is used to mean "return as fast as possible."
23-
*/
24-
// TODO(zoff99): don't hardcode this, let the application choose it
25-
#define WANTED_MAX_DECODER_FPS 40
26-
27-
/**
28-
* VPX_DL_REALTIME (1)
29-
* deadline parameter analogous to VPx REALTIME mode.
30-
*
31-
* VPX_DL_GOOD_QUALITY (1000000)
32-
* deadline parameter analogous to VPx GOOD QUALITY mode.
33-
*
34-
* VPX_DL_BEST_QUALITY (0)
35-
* deadline parameter analogous to VPx BEST QUALITY mode.
36-
*/
37-
#define MAX_DECODE_TIME_US (1000000 / WANTED_MAX_DECODER_FPS) // to allow x fps
38-
3918
/**
4019
* Codec control function to set encoder internal speed settings. Changes in
4120
* this value influences, among others, the encoder's selection of motion
@@ -320,7 +299,7 @@ void vc_iterate(VCSession *vc)
320299

321300
LOGGER_DEBUG(vc->log, "vc_iterate: rb_read p->len=%d p->header.xe=%d", (int)full_data_len, p->header.xe);
322301
LOGGER_DEBUG(vc->log, "vc_iterate: rb_read rb size=%d", (int)log_rb_size);
323-
const vpx_codec_err_t rc = vpx_codec_decode(vc->decoder, p->data, full_data_len, nullptr, MAX_DECODE_TIME_US);
302+
const vpx_codec_err_t rc = vpx_codec_decode(vc->decoder, p->data, full_data_len, nullptr, 0);
324303
free(p);
325304

326305
if (rc != VPX_CODEC_OK) {

0 commit comments

Comments
 (0)