summaryrefslogtreecommitdiffstats
path: root/tinyDAV/include/tinydav/video/jb/tdav_video_jb.h
blob: f4f2a5c068106843bc53fdcee777d9320f36fdef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
*
* Contact: Mamadou Diop <diopmamadou(at)doubango(DOT)org>
*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
*/

/**@file tdav_video_jb.h
 * @brief Video Jitter Buffer
 *
 * @author Mamadou Diop <diopmamadou(at)doubango(DOT)org>
 */
#ifndef TINYDAV_VIDEO_JB_H
#define TINYDAV_VIDEO_JB_H

#include "tinydav_config.h"

#include "tinymedia/tmedia_jitterbuffer.h"

#include "tsk_buffer.h"
#include "tsk_timer.h"
#include "tsk_list.h"
#include "tsk_safeobj.h"

TDAV_BEGIN_DECLS

typedef enum tdav_video_jb_cb_data_type_e {
    tdav_video_jb_cb_data_type_rtp,
    tdav_video_jb_cb_data_type_fl, // frame lost
    tdav_video_jb_cb_data_type_tmfr, // too many frames removed
    tdav_video_jb_cb_data_type_fdd, // average frame decoding duration
    tdav_video_jb_cb_data_type_fps_changed, // fps changed, detection done using the timestamp
}
tdav_video_jb_cb_data_type_t;

typedef struct tdav_video_jb_cb_data_xs {
    tdav_video_jb_cb_data_type_t type;
    uint32_t ssrc;
    const void* usr_data;
    union {
        struct {
            const struct trtp_rtp_packet_s* pkt;
        } rtp;
        struct {
            uint16_t seq_num;
            tsk_size_t count;
        } fl;
        struct {
            uint32_t x_dur; // expected duration in milliseconds
            uint32_t a_dur; // actual duration in milliseconds
        } fdd;
        struct {
            uint32_t old;
            uint32_t new;
        } fps;
    };
}
tdav_video_jb_cb_data_xt;

typedef int (*tdav_video_jb_cb_f)(const tdav_video_jb_cb_data_xt* data);
#define TDAV_VIDEO_JB_CB_F(self) ((tdav_video_jb_cb_f)(self))

struct tdav_video_jb_s* tdav_video_jb_create();
int tdav_video_jb_set_callback(struct tdav_video_jb_s* self, tdav_video_jb_cb_f callback, const void* usr_data);
int tdav_video_jb_get_qcong(struct tdav_video_jb_s* self, float* q);
int tdav_video_jb_start(struct tdav_video_jb_s* self);
int tdav_video_jb_put(struct tdav_video_jb_s* self, struct trtp_rtp_packet_s* rtp_pkt);
int tdav_video_jb_stop(struct tdav_video_jb_s* self);

TDAV_END_DECLS

#endif /* TINYDAV_VIDEO_JB_H */
OpenPOWER on IntegriCloud