data_uri.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Nicolas George
3  *
4  * This file is part of FFmpeg.
5  *
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.
10  *
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.
15  *
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
19  */
20 
21 #include <string.h>
22 #include "libavutil/avstring.h"
23 #include "libavutil/base64.h"
24 #include "url.h"
25 
26 typedef struct {
27  const uint8_t *data;
28  void *tofree;
29  size_t size;
30  size_t pos;
31 } DataContext;
32 
33 static av_cold int data_open(URLContext *h, const char *uri, int flags)
34 {
35  DataContext *dc = h->priv_data;
36  const char *data, *opt, *next;
37  char *ddata;
38  int ret, base64 = 0;
39  size_t in_size;
40 
41  /* data:content/type[;base64],payload */
42 
43  av_strstart(uri, "data:", &uri);
44  data = strchr(uri, ',');
45  if (!data) {
46  av_log(h, AV_LOG_ERROR, "No ',' delimiter in URI\n");
47  return AVERROR(EINVAL);
48  }
49  opt = uri;
50  while (opt < data) {
51  next = av_x_if_null(memchr(opt, ';', data - opt), data);
52  if (opt == uri) {
53  if (!memchr(opt, '/', next - opt)) { /* basic validity check */
54  av_log(h, AV_LOG_ERROR, "Invalid content-type '%.*s'\n",
55  (int)(next - opt), opt);
56  return AVERROR(EINVAL);
57  }
58  av_log(h, AV_LOG_VERBOSE, "Content-type: %.*s\n",
59  (int)(next - opt), opt);
60  } else {
61  if (!av_strncasecmp(opt, "base64", next - opt)) {
62  base64 = 1;
63  } else {
64  av_log(h, AV_LOG_VERBOSE, "Ignoring option '%.*s'\n",
65  (int)(next - opt), opt);
66  }
67  }
68  opt = next + 1;
69  }
70 
71  data++;
72  in_size = strlen(data);
73  if (base64) {
74  size_t out_size = 3 * (in_size / 4) + 1;
75 
76  if (out_size > INT_MAX || !(ddata = av_malloc(out_size)))
77  return AVERROR(ENOMEM);
78  if ((ret = av_base64_decode(ddata, data, out_size)) < 0) {
79  av_free(ddata);
80  av_log(h, AV_LOG_ERROR, "Invalid base64 in URI\n");
81  return ret;
82  }
83  dc->data = dc->tofree = ddata;
84  dc->size = ret;
85  } else {
86  dc->data = data;
87  dc->size = in_size;
88  }
89  return 0;
90 }
91 
93 {
94  DataContext *dc = h->priv_data;
95 
96  av_freep(&dc->tofree);
97  return 0;
98 }
99 
100 static int data_read(URLContext *h, unsigned char *buf, int size)
101 {
102  DataContext *dc = h->priv_data;
103 
104  if (dc->pos >= dc->size)
105  return AVERROR_EOF;
106  size = FFMIN(size, dc->size - dc->pos);
107  memcpy(buf, dc->data + dc->pos, size);
108  dc->pos += size;
109  return size;
110 }
111 
113  .name = "data",
114  .url_open = data_open,
115  .url_close = data_close,
116  .url_read = data_read,
117  .priv_data_size = sizeof(DataContext),
118 };
static int data_read(URLContext *h, unsigned char *buf, int size)
Definition: data_uri.c:100
const uint8_t * data
Definition: data_uri.c:27
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
Definition: avstring.c:222
size_t pos
Definition: data_uri.c:30
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
void * tofree
Definition: data_uri.c:28
uint8_t
#define av_cold
Definition: attributes.h:78
#define AVERROR_EOF
End of file.
Definition: error.h:55
static void * av_x_if_null(const void *p, const void *x)
Return x default pointer in case p is NULL.
Definition: avutil.h:250
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
Definition: mem.c:183
static av_cold int data_open(URLContext *h, const char *uri, int flags)
Definition: data_uri.c:33
Spectrum Plot time data
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
int size
#define AV_LOG_VERBOSE
Definition: log.h:157
#define FFMIN(a, b)
Definition: common.h:58
ret
Definition: avfilter.c:821
static av_cold int data_close(URLContext *h)
Definition: data_uri.c:92
size_t size
Definition: data_uri.c:29
FIXME Range Coding of cr are mx and my are Motion Vector top and top right vectors is used as motion vector prediction the used motion vector is the sum of the predictor and(mvx_diff, mvy_diff)*mv_scale Intra DC Predicton block[y][x] dc[1]
Definition: snow.txt:392
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
void * buf
Definition: avisynth_c.h:594
Definition: url.h:41
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:73
URLProtocol ff_data_protocol
Definition: data_uri.c:112
void * priv_data
Definition: url.h:44
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
const char * name
Definition: url.h:55
static int flags
Definition: cpu.c:23
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
Definition: avstring.c:33
int av_base64_decode(uint8_t *out, const char *in_str, int out_size)
Decode a base64-encoded string.
unbuffered private I/O API