Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
rtcp: add rc set/get
· cc90c45f
Rafaël Carré
authored
Mar 14, 2018
cc90c45f
Bump version to 1.4
· 8f8ace30
Rafaël Carré
authored
Mar 14, 2018
8f8ace30
Merge branch 'funman/bitstream-master'
· 0ea56a73
Christophe Massiot
authored
Mar 14, 2018
0ea56a73
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
0ea56a73
...
...
@@ -4,7 +4,7 @@ LIBDIR = $(PREFIX)/lib
DATADIR
=
$(
PREFIX
)
/share
INCLUDE
=
$(
DESTDIR
)$(
INCLUDEDIR
)
/bitstream
PKGCONFIG
=
$(
DESTDIR
)$(
DATADIR
)
/pkgconfig
VERSION
=
1.
3
VERSION
=
1.
4
all
:
ln
-nsf
.. examples/bitstream
...
...
NEWS
View file @
0ea56a73
1.4 (not released yet)
=================
- Add RTCP helpers
1.3 (29 Jan 2018)
=================
- Add support for avcC and hvcC structures
...
...
ietf/rtcp.h
View file @
0ea56a73
...
...
@@ -10,6 +10,16 @@ static inline void rtcp_set_rtp_version(uint8_t *p_rtcp)
p_rtcp
[
0
]
=
RTCP_RTP_VERSION
<<
6
;
}
static
inline
uint8_t
rtcp_get_rc
(
uint8_t
*
p_rtcp
)
{
return
p_rtcp
[
0
]
&
0x1f
;
}
static
inline
void
rtcp_set_rc
(
uint8_t
*
p_rtcp
,
uint8_t
rc
)
{
p_rtcp
[
0
]
|=
rc
&
0x1f
;
}
static
inline
uint8_t
rtcp_get_pt
(
const
uint8_t
*
p_rtcp
)
{
return
p_rtcp
[
1
];
...
...