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
30
31 #define RAW_PACKET_SIZE 1024
32
34 {
37
39
42
49 }
52 }
53
55 {
57 if (!st)
63 /* the parameters will be extracted from the compressed bitstream */
64
65 return 0;
66 }
67
68 /* MPEG-1/H.263 input */
70 {
75
76
78 if (!st) {
81 }
83
87
90
93 }
94
96 {
98 if (!st)
103 return 0;
104 }
105
107 {
109 if (!st)
114 return 0;
115 }
116
117 /* Note: Do not forget to add new entries to the Makefile as well. */
118
119 #define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
120 #define DEC AV_OPT_FLAG_DECODING_PARAM
125 };
126 #undef OFFSET
127
133 };
134
135 #define OFFSET(x) offsetof(FFRawDemuxerContext, x)
139 };
140
146 };
147
148 #if CONFIG_DATA_DEMUXER
158 };
159 #endif
160
161 #if CONFIG_MJPEG_DEMUXER
163 {
166 int nb_invalid = 0;
167 int nb_frames = 0;
168
171 if (p->
buf[
i] != 0xFF)
172 continue;
175 case 0xD8:
177 break;
178 case 0xC0:
179 case 0xC1:
180 case 0xC2:
181 case 0xC3:
182 case 0xC5:
183 case 0xC6:
184 case 0xC7:
185 case 0xF7:
188 } else
189 nb_invalid++;
190 break;
191 case 0xDA:
194 } else
195 nb_invalid++;
196 break;
197 case 0xD9:
200 nb_frames++;
201 } else
202 nb_invalid++;
203 break;
204 default:
205 if ( (
c >= 0x02 &&
c <= 0xBF)
207 nb_invalid++;
208 }
209 }
210 }
211
212 if (nb_invalid*4 + 1 < nb_frames) {
213 static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n";
215
217 if (!memcmp(p->
buf +
i, ct_jpeg,
sizeof(ct_jpeg) - 1))
219
220 if (nb_invalid == 0 && nb_frames > 2)
223 }
224 if (!nb_invalid && nb_frames)
226
227 return 0;
228 }
229
231 #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
enum AVMediaType codec_type
General type of the encoded data.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
@ AV_OPT_TYPE_VIDEO_RATE
offset must point to AVRational
AVRational avg_frame_rate
Average framerate.
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.
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...
static const FFInputFormat * ffifmt(const AVInputFormat *fmt)
#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 Thu Sep 26 2024 23:15:17 for FFmpeg by
doxygen
1.8.17