42 #define EXTRADATA1_SIZE (6 + 256 * 3)
44 #define FORM_TAG MKBETAG('F', 'O', 'R', 'M')
45 #define RLV2_TAG MKBETAG('R', 'L', 'V', '2')
46 #define RLV3_TAG MKBETAG('R', 'L', 'V', '3')
80 unsigned int frame_count;
81 unsigned int audio_frame_counter = 0;
82 unsigned int video_frame_counter = 0;
83 unsigned int back_size;
84 unsigned short sound_rate;
86 unsigned short channels;
87 unsigned short def_sound_size;
89 unsigned int pts_den = 11025;
90 unsigned int pts_num = 1103;
91 unsigned int* chunk_offset =
NULL;
92 int* chunk_size =
NULL;
93 int* audio_size =
NULL;
104 if(back_size > INT_MAX/2 || frame_count > INT_MAX /
sizeof(uint32_t))
127 if(signature ==
RLV3_TAG && back_size > 0)
135 if (!channels || channels > 42) {
140 pts_num = def_sound_size;
161 chunk_size =
av_malloc(frame_count *
sizeof(uint32_t));
162 audio_size =
av_malloc(frame_count *
sizeof(uint32_t));
163 chunk_offset =
av_malloc(frame_count *
sizeof(uint32_t));
165 if(!chunk_size || !audio_size || !chunk_offset){
173 for(i=0; i < frame_count;i++)
175 for(i=0; i < frame_count;i++)
177 for(i=0; i < frame_count;i++)
181 for(i=0;i<frame_count;i++){
182 if(chunk_size[i] < 0 || audio_size[i] > chunk_size[i]){
187 if(sound_rate && audio_size[i]){
190 audio_frame_counter += audio_size[i] / channels;
194 ++video_frame_counter;
220 int64_t pos = INT64_MAX;
242 if(ret != sample->
size){
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
void av_free_packet(AVPacket *pkt)
Free a packet.
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
static const char signature[]
unsigned int avio_rb32(AVIOContext *s)
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
AVStream ** streams
A list of all streams in the file.
#define AVERROR_EOF
End of file.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
unsigned int avio_rl32(AVIOContext *s)
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
AVCodecContext * codec
Codec context associated with this stream.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
int bit_rate
the average bitrate
int width
picture width / height.
static int read_header(FFV1Context *f)
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
enum AVMediaType codec_type
int sample_rate
samples per second
AVIOContext * pb
I/O context.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
This structure contains the data a format has to probe a file.
unsigned int avio_rl16(AVIOContext *s)
unsigned int index_pos[2]
indexes in the sample tables
int channels
number of audio channels
void * priv_data
Format private data.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
This structure stores compressed data.
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...