Go to the documentation of this file.
23 #include "config_components.h"
34 #define RAW_PACKET_SIZE 1024
122 #define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
123 #define DEC AV_OPT_FLAG_DECODING_PARAM
138 #define OFFSET(x) offsetof(FFRawDemuxerContext, x)
151 #if CONFIG_DATA_DEMUXER
164 #if CONFIG_MJPEG_DEMUXER
174 if (p->
buf[
i] != 0xFF)
208 if ( (
c >= 0x02 &&
c <= 0xBF)
215 if (nb_invalid*4 + 1 < nb_frames) {
216 static const char ct_jpeg[] =
"\r\nContent-Type: image/jpeg\r\n";
220 if (!memcmp(p->
buf +
i, ct_jpeg,
sizeof(ct_jpeg) - 1))
223 if (nb_invalid == 0 && nb_frames > 2)
227 if (!nb_invalid && nb_frames)
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.
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...
AVCodecContext * avctx
The codec context used by avformat_find_stream_info, the parser, etc.
#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.