2 * Copyright (c) 2012 Nicolas George
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with FFmpeg; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avstring.h"
23 #include "libavutil/avutil.h"
24 #include "libavutil/base64.h"
25 #include "libavutil/mem.h"
35 static av_cold
int data_open(URLContext
*h
, const char *uri
, int flags
)
37 DataContext
*dc
= h
->priv_data
;
38 const char *data
, *opt
, *next
;
43 /* data:content/type[;base64],payload */
45 av_strstart(uri
, "data:", &uri
);
46 data
= strchr(uri
, ',');
48 av_log(h
, AV_LOG_ERROR
, "No ',' delimiter in URI\n");
49 return AVERROR(EINVAL
);
53 next
= av_x_if_null(memchr(opt
, ';', data
- opt
), data
);
55 if (!memchr(opt
, '/', next
- opt
)) { /* basic validity check */
56 av_log(h
, AV_LOG_ERROR
, "Invalid content-type '%.*s'\n",
57 (int)(next
- opt
), opt
);
58 return AVERROR(EINVAL
);
60 av_log(h
, AV_LOG_VERBOSE
, "Content-type: %.*s\n",
61 (int)(next
- opt
), opt
);
63 if (!av_strncasecmp(opt
, "base64", next
- opt
)) {
66 av_log(h
, AV_LOG_VERBOSE
, "Ignoring option '%.*s'\n",
67 (int)(next
- opt
), opt
);
74 in_size
= strlen(data
);
76 size_t out_size
= 3 * (in_size
/ 4) + 1;
78 if (out_size
> INT_MAX
|| !(ddata
= av_malloc(out_size
)))
79 return AVERROR(ENOMEM
);
80 if ((ret
= av_base64_decode(ddata
, data
, out_size
)) < 0) {
82 av_log(h
, AV_LOG_ERROR
, "Invalid base64 in URI\n");
85 dc
->data
= dc
->tofree
= ddata
;
94 static av_cold
int data_close(URLContext
*h
)
96 DataContext
*dc
= h
->priv_data
;
98 av_freep(&dc
->tofree
);
102 static int data_read(URLContext
*h
, unsigned char *buf
, int size
)
104 DataContext
*dc
= h
->priv_data
;
106 if (dc
->pos
>= dc
->size
)
108 size
= FFMIN(size
, dc
->size
- dc
->pos
);
109 memcpy(buf
, dc
->data
+ dc
->pos
, size
);
114 const URLProtocol ff_data_protocol
= {
116 .url_open
= data_open
,
117 .url_close
= data_close
,
118 .url_read
= data_read
,
119 .priv_data_size
= sizeof(DataContext
),