File: sdp.c

package info (click to toggle)
baresip 0.5.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,764 kB
  • ctags: 4,850
  • sloc: ansic: 40,105; objc: 1,017; cpp: 420; makefile: 292; sh: 26
file content (57 lines) | stat: -rw-r--r-- 1,106 bytes parent folder | download
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
/**
 * @file gst_video/sdp.c H.264 SDP Functions
 *
 * Copyright (C) 2010 Creytiv.com
 */

#include <re.h>
#include <baresip.h>
#include "gst_video.h"


static const uint8_t gst_video_h264_level_idc = 0x0c;


uint32_t gst_video1_h264_packetization_mode(const char *fmtp)
{
	struct pl pl, mode;

	if (!fmtp)
		return 0;

	pl_set_str(&pl, fmtp);

	if (fmt_param_get(&pl, "packetization-mode", &mode))
		return pl_u32(&mode);

	return 0;
}


int gst_video1_fmtp_enc(struct mbuf *mb, const struct sdp_format *fmt,
		       bool offer, void *arg)
{
	struct vidcodec *vc = arg;
	const uint8_t profile_idc = 0x42; /* baseline profile */
	const uint8_t profile_iop = 0x80;
	(void)offer;

	if (!mb || !fmt || !vc)
		return 0;

	return mbuf_printf(mb, "a=fmtp:%s"
			   " packetization-mode=0"
			   ";profile-level-id=%02x%02x%02x"
			   "\r\n",
			   fmt->id, profile_idc, profile_iop,
			   gst_video_h264_level_idc);
}


bool gst_video1_fmtp_cmp(const char *fmtp1, const char *fmtp2, void *data)
{
	(void)data;

	return gst_video1_h264_packetization_mode(fmtp1) ==
		gst_video1_h264_packetization_mode(fmtp2);
}