]> git.sesse.net Git - ffmpeg/blob - libavformat/concat.c
mp3probe: Detect mp3 stronger with just 200 frames, this should speed up detection
[ffmpeg] / libavformat / concat.c
1 /*
2  * Concat URL protocol
3  * Copyright (c) 2006 Steve Lhomme
4  * Copyright (c) 2007 Wolfram Gloger
5  * Copyright (c) 2010 Michele OrrĂ¹
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include "avformat.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/mem.h"
27 #include "url.h"
28
29 #define AV_CAT_SEPARATOR "|"
30
31 struct concat_nodes {
32     URLContext *uc;                ///< node's URLContext
33     int64_t     size;              ///< url filesize
34 };
35
36 struct concat_data {
37     struct concat_nodes *nodes;    ///< list of nodes to concat
38     size_t               length;   ///< number of cat'ed nodes
39     size_t               current;  ///< index of currently read node
40 };
41
42 static av_cold int concat_close(URLContext *h)
43 {
44     int err = 0;
45     size_t i;
46     struct concat_data  *data  = h->priv_data;
47     struct concat_nodes *nodes = data->nodes;
48
49     for (i = 0; i != data->length; i++)
50         err |= ffurl_close(nodes[i].uc);
51
52     av_freep(&data->nodes);
53     av_freep(&h->priv_data);
54
55     return err < 0 ? -1 : 0;
56 }
57
58 static av_cold int concat_open(URLContext *h, const char *uri, int flags)
59 {
60     char *node_uri = NULL, *tmp_uri;
61     int err = 0;
62     int64_t size;
63     size_t  len, i;
64     URLContext *uc;
65     struct concat_data  *data;
66     struct concat_nodes *nodes;
67
68     av_strstart(uri, "concat:", &uri);
69
70     /* creating data */
71     if (!(data = av_mallocz(sizeof(*data))))
72         return AVERROR(ENOMEM);
73     h->priv_data = data;
74
75     for (i = 0, len = 1; uri[i]; i++)
76         if (uri[i] == *AV_CAT_SEPARATOR)
77             /* integer overflow */
78             if (++len == UINT_MAX / sizeof(*nodes)) {
79                 av_freep(&h->priv_data);
80                 return AVERROR(ENAMETOOLONG);
81             }
82
83     if (!(nodes = av_malloc(sizeof(*nodes) * len))) {
84         av_freep(&h->priv_data);
85         return AVERROR(ENOMEM);
86     } else
87         data->nodes = nodes;
88
89     /* handle input */
90     if (!*uri)
91         err = AVERROR(ENOENT);
92     for (i = 0; *uri; i++) {
93         /* parsing uri */
94         len = strcspn(uri, AV_CAT_SEPARATOR);
95         if (!(tmp_uri = av_realloc(node_uri, len+1))) {
96             err = AVERROR(ENOMEM);
97             break;
98         } else
99             node_uri = tmp_uri;
100         av_strlcpy(node_uri, uri, len+1);
101         uri += len + strspn(uri+len, AV_CAT_SEPARATOR);
102
103         /* creating URLContext */
104         if ((err = ffurl_open(&uc, node_uri, flags,
105                               &h->interrupt_callback, NULL)) < 0)
106             break;
107
108         /* creating size */
109         if ((size = ffurl_size(uc)) < 0) {
110             ffurl_close(uc);
111             err = AVERROR(ENOSYS);
112             break;
113         }
114
115         /* assembling */
116         nodes[i].uc   = uc;
117         nodes[i].size = size;
118     }
119     av_free(node_uri);
120     data->length = i;
121
122     if (err < 0)
123         concat_close(h);
124     else if (!(nodes = av_realloc(nodes, data->length * sizeof(*nodes)))) {
125         concat_close(h);
126         err = AVERROR(ENOMEM);
127     } else
128         data->nodes = nodes;
129     return err;
130 }
131
132 static int concat_read(URLContext *h, unsigned char *buf, int size)
133 {
134     int result, total = 0;
135     struct concat_data  *data  = h->priv_data;
136     struct concat_nodes *nodes = data->nodes;
137     size_t i = data->current;
138
139     while (size > 0) {
140         result = ffurl_read(nodes[i].uc, buf, size);
141         if (result < 0)
142             return total ? total : result;
143         if (!result)
144             if (i + 1 == data->length ||
145                 ffurl_seek(nodes[++i].uc, 0, SEEK_SET) < 0)
146                 break;
147         total += result;
148         buf   += result;
149         size  -= result;
150     }
151     data->current = i;
152     return total;
153 }
154
155 static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
156 {
157     int64_t result;
158     struct concat_data  *data  = h->priv_data;
159     struct concat_nodes *nodes = data->nodes;
160     size_t i;
161
162     switch (whence) {
163     case SEEK_END:
164         for (i = data->length - 1;
165              i && pos < -nodes[i].size;
166              i--)
167             pos += nodes[i].size;
168         break;
169     case SEEK_CUR:
170         /* get the absolute position */
171         for (i = 0; i != data->current; i++)
172             pos += nodes[i].size;
173         pos += ffurl_seek(nodes[i].uc, 0, SEEK_CUR);
174         whence = SEEK_SET;
175         /* fall through with the absolute position */
176     case SEEK_SET:
177         for (i = 0; i != data->length - 1 && pos >= nodes[i].size; i++)
178             pos -= nodes[i].size;
179         break;
180     default:
181         return AVERROR(EINVAL);
182     }
183
184     result = ffurl_seek(nodes[i].uc, pos, whence);
185     if (result >= 0) {
186         data->current = i;
187         while (i)
188             result += nodes[--i].size;
189     }
190     return result;
191 }
192
193 URLProtocol ff_concat_protocol = {
194     .name      = "concat",
195     .url_open  = concat_open,
196     .url_read  = concat_read,
197     .url_seek  = concat_seek,
198     .url_close = concat_close,
199 };