summaryrefslogtreecommitdiffstats
path: root/bindings/_common/Common.h
blob: eb206b65fa6aad316b23f11ca1da4a5c41c0b769 (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
88
89
90
91
92
93
94
95
/*
* Copyright (C) 2010-2011 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.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.
*
*/
#ifndef TINYWRAP_COMMON_H
#define TINYWRAP_COMMON_H

#include "tinyWRAP_config.h"

#if ANDROID
#	define dyn_cast	static_cast
#	define __JNIENV JNIEnv
#else
#	define dyn_cast	dynamic_cast
#	define __JNIENV void
#endif

typedef enum twrap_media_type_e {
    // because of Java don't use OR
    twrap_media_none = 0x00,

    twrap_media_audio = 0x01, // (0x01 << 0)
    twrap_media_video = 0x02, // (0x01 << 1)
    twrap_media_msrp = 0x04, // (0x01 << 2)
    twrap_media_t140 = 0x08, // (0x01 << 3)
    twrap_media_bfcp = 0x10,  // (0x01 << 4)
    twrap_media_bfcp_audio = 0x30, // (0x01 << 5) | twrap_media_bfcp;
    twrap_media_bfcp_video = 0x50, // (0x01 << 6) | twrap_media_bfcp;

    twrap_media_audiovideo = 0x03, /* @deprecated */
    twrap_media_audio_video = twrap_media_audiovideo,
}
twrap_media_type_t;

#if !defined(SWIG)
#include "tinymedia/tmedia_common.h"

struct media_type_bind_s {
    twrap_media_type_t twrap;
    tmedia_type_t tnative;
};
static const struct media_type_bind_s __media_type_binds[] = {
    { twrap_media_msrp, tmedia_msrp },
    { twrap_media_audio , tmedia_audio },
    { twrap_media_video, tmedia_video },
    { twrap_media_audio_video, (tmedia_type_t)(tmedia_audio | tmedia_video) },
    { twrap_media_t140, tmedia_t140 },
    { twrap_media_bfcp, tmedia_bfcp },
    { twrap_media_bfcp_audio, tmedia_bfcp_audio },
    { twrap_media_bfcp_video, tmedia_bfcp_video },
};
static const tsk_size_t __media_type_binds_count = sizeof(__media_type_binds)/sizeof(__media_type_binds[0]);
static tmedia_type_t twrap_get_native_media_type(twrap_media_type_t type)
{
    tsk_size_t u;
    tmedia_type_t t = tmedia_none;
    for (u = 0; u < __media_type_binds_count; ++u) {
        if ((__media_type_binds[u].twrap & type) == __media_type_binds[u].twrap) {
            t = (tmedia_type_t)(t | __media_type_binds[u].tnative);
        }
    }
    return t;
}
static twrap_media_type_t twrap_get_wrapped_media_type(tmedia_type_t type)
{
    twrap_media_type_t t = twrap_media_none;
    tsk_size_t u;
    for (u = 0; u < __media_type_binds_count; ++u) {
        if ((__media_type_binds[u].tnative & type) == __media_type_binds[u].tnative) {
            t = (twrap_media_type_t)(t | __media_type_binds[u].twrap);
        }
    }
    return t;
}
#endif

#endif /* TINYWRAP_COMMON_H */

OpenPOWER on IntegriCloud