FFmpeg: libavformat/srtpproto.c Source File
Go to the documentation of this file. 1 /*
2 * SRTP network protocol
3 * Copyright (c) 2012 Martin Storsjo
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
26
30
39
40 #define D AV_OPT_FLAG_DECODING_PARAM
41 #define E AV_OPT_FLAG_ENCODING_PARAM
48 };
49
55 };
56
58 {
63 return 0;
64 }
65
67 {
69 char hostname[256], buf[1024], path[1024];
71
72 if (
s->out_suite &&
s->out_params)
75 if (
s->in_suite &&
s->in_params)
78
80 path, sizeof(path), uri);
81 ff_url_join(buf,
sizeof(buf),
"rtp",
NULL, hostname, rtp_port,
"%s", path);
83 NULL,
h->protocol_whitelist,
h->protocol_blacklist,
h)) < 0)
85
86 h->max_packet_size =
FFMIN(
s->rtp_hd->max_packet_size,
87 sizeof(
s->encryptbuf)) - 14;
89 return 0;
90
94 }
95
97 {
100 start:
102 if (
ret > 0 &&
s->srtp_in.aes) {
104 goto start;
105 }
107 }
108
110 {
112 if (!
s->srtp_out.aes)
115 sizeof(
s->encryptbuf));
119 }
120
122 {
125 }
126
128 int *numhandles)
129 {
132 }
133
145 };
uint8_t encryptbuf[RTP_MAX_PACKET_LENGTH]
#define URL_PROTOCOL_FLAG_NETWORK
static int srtp_get_file_handle(URLContext *h)
static const AVClass srtp_context_class
static int srtp_read(URLContext *h, uint8_t *buf, int size)
int ff_srtp_decrypt(struct SRTPContext *s, uint8_t *buf, int *lenptr)
static int srtp_close(URLContext *h)
int ff_srtp_encrypt(struct SRTPContext *s, const uint8_t *in, int len, uint8_t *out, int outlen)
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
const URLProtocol ff_srtp_protocol
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
const char * av_default_item_name(void *ptr)
Return the context name.
int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
Return the file descriptors associated with this URL.
static int srtp_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
void ff_srtp_free(struct SRTPContext *s)
static int srtp_write(URLContext *h, const uint8_t *buf, int size)
struct SRTPContext srtp_out srtp_in
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
int ff_srtp_set_crypto(struct SRTPContext *s, const char *suite, const char *params)
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define RTP_MAX_PACKET_LENGTH
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
static const AVOption options[]
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
static int srtp_open(URLContext *h, const char *uri, int flags)
#define flags(name, subs,...)
int ffurl_get_file_handle(URLContext *h)
Return the file descriptor associated with this URL.
Generated on Wed Aug 24 2022 21:38:27 for FFmpeg by
doxygen
1.8.17