FFmpeg: libavformat/rawdec.c Source File
Go to the documentation of this file. 1 /*
2 * RAW demuxers
3 * Copyright (c) 2001 Fabrice Bellard
4 * Copyright (c) 2005 Alex Beregszaszi
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include "config_components.h"
24
29
31
32 #define RAW_PACKET_SIZE 1024
33
35 {
38
40
43
50 }
53 }
54
56 {
58 if (!st)
64 /* the parameters will be extracted from the compressed bitstream */
65
66 return 0;
67 }
68
69 /* MPEG-1/H.263 input */
71 {
76
77
79 if (!st) {
82 }
84
88
91
94 }
95
97 {
99 if (!st)
104 return 0;
105 }
106
108 {
110 if (!st)
115 return 0;
116 }
117
118 /* Note: Do not forget to add new entries to the Makefile as well. */
119
120 #define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
121 #define DEC AV_OPT_FLAG_DECODING_PARAM
126 };
127 #undef OFFSET
128
134 };
135
136 #define OFFSET(x) offsetof(FFRawDemuxerContext, x)
140 };
141
147 };
148
149 #if CONFIG_DATA_DEMUXER
159 };
160 #endif
161
162 #if CONFIG_MJPEG_DEMUXER
164 {
167 int nb_invalid = 0;
168 int nb_frames = 0;
169
172 if (p->
buf[
i] != 0xFF)
173 continue;
176 case 0xD8:
178 break;
179 case 0xC0:
180 case 0xC1:
181 case 0xC2:
182 case 0xC3:
183 case 0xC5:
184 case 0xC6:
185 case 0xC7:
186 case 0xF7:
189 } else
190 nb_invalid++;
191 break;
192 case 0xDA:
195 } else
196 nb_invalid++;
197 break;
198 case 0xD9:
201 nb_frames++;
202 } else
203 nb_invalid++;
204 break;
205 default:
206 if ( (
c >= 0x02 &&
c <= 0xBF)
208 nb_invalid++;
209 }
210 }
211 }
212
213 if (nb_invalid*4 + 1 < nb_frames) {
214 static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n";
216
218 if (!memcmp(p->
buf +
i, ct_jpeg,
sizeof(ct_jpeg) - 1))
220
221 if (nb_invalid == 0 && nb_frames > 2)
224 }
225 if (!nb_invalid && nb_frames)
227
228 return 0;
229 }
230
232 #endif
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
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
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
enum AVMediaType codec_type
General type of the encoded data.
@ AV_OPT_TYPE_VIDEO_RATE
offset must point to AVRational
int buf_size
Size of buf except extra allocated bytes.
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
struct AVCodecContext * avctx
The codec context used by avformat_find_stream_info, the parser, etc.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
@ AVMEDIA_TYPE_DATA
Opaque data information usually continuous.
enum AVStreamParseType need_parsing
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
const char * av_default_item_name(void *ptr)
Return the context name.
This structure contains the data a format has to probe a file.
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
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define i(width, name, range_min, range_max)
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 FF_DEF_RAWVIDEO_DEMUXER2(shortname, longname, probe, ext, id, flag)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
int64_t pos
byte position in stream, -1 if unknown
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
int avio_read_partial(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Generated on Tue Feb 28 2023 21:33:36 for FFmpeg by
doxygen
1.8.17