FFmpeg: libavformat/subfile.c Source File
Go to the documentation of this file. 1 /*
2 * Copyright (c) 2014 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
25
33
34 #define OFFSET(field) offsetof(SubfileContext, field)
35 #define D AV_OPT_FLAG_DECODING_PARAM
36
41 };
42
43 #undef OFFSET
44 #undef D
45
51 };
52
54 {
57
64 }
65 return 0;
66 }
67
70 {
73
76
77 if (
c->end <=
c->start) {
80 }
83 options,
h->protocol_whitelist,
h->protocol_blacklist,
h);
90 }
91 return 0;
92 }
93
95 {
98 }
99
101 {
105
106 if (rest <= 0)
113 }
114
116 {
120
124 return end;
125 }
126
127 switch (whence) {
129 return end -
c->start;
130 case SEEK_SET:
131 new_pos =
c->start +
pos;
132 break;
133 case SEEK_CUR:
134 new_pos =
c->pos +
pos;
135 break;
136 case SEEK_END:
138 break;
139 default:
141 }
142 if (new_pos < c->start)
147 return c->pos -
c->start;
148 }
149
158 .default_whitelist = "file",
159 };
static int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
Change the position that will be used by the next read/write operation on the resource accessed by h.
Filter the word "frame" indicates either a video frame or a group of audio as stored in an AVFrame 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. Frame references ownership and permissions
#define AVERROR_EOF
End of file.
#define AVSEEK_SIZE
ORing this as the "whence" parameter to a seek function causes it to return the filesize without seek...
static int subfile_open(URLContext *h, const char *filename, int flags, AVDictionary **options)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
static int subfile_read(URLContext *h, unsigned char *buf, int size)
const char * av_default_item_name(void *ptr)
Return the context name.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
const OptionDef options[]
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
static const AVClass subfile_class
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
static int64_t subfile_seek(URLContext *h, int64_t pos, int whence)
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...
static const AVOption subfile_options[]
#define flags(name, subs,...)
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
static int slave_seek(URLContext *h)
const URLProtocol ff_subfile_protocol
static int subfile_close(URLContext *h)
static int ffurl_read(URLContext *h, uint8_t *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
Generated on Thu Sep 26 2024 23:15:52 for FFmpeg by
doxygen
1.8.17