30 #define RPL_SIGNATURE "ARMovie\x0A" 
   31 #define RPL_SIGNATURE_SIZE 8 
   34 #define RPL_LINE_LENGTH 256 
   57     for (i = 0; i < bufsize - 1; i++) {
 
   73     unsigned long result = 0;
 
   74     for (; *line>=
'0' && *line<=
'9'; line++) {
 
   75         if (result > (0x7FFFFFFF - 9) / 10)
 
   77         result = 10 * result + *line - 
'0';
 
   87     *error |= 
read_line(pb, line, 
sizeof(line));
 
   88     return read_int(line, &endptr, error);
 
  102     for (; *line>=
'0' && *line<=
'9'; line++) {
 
  104         if (num > (INT64_MAX - 9) / 10 || den > INT64_MAX / 10)
 
  106         num  = 10 * num + *line - 
'0';
 
  120     int total_audio_size;
 
  125     int32_t audio_format, chunk_catalog_offset, number_of_chunks;
 
  136     error |= 
read_line(pb, line, 
sizeof(line));      
 
  137     error |= 
read_line(pb, line, 
sizeof(line));      
 
  139     error |= 
read_line(pb, line, 
sizeof(line));      
 
  141     error |= 
read_line(pb, line, 
sizeof(line));      
 
  153     error |= 
read_line(pb, line, 
sizeof(line));                   
 
  188         ast->codec->codec_tag       = audio_format;
 
  194         if (ast->codec->bits_per_coded_sample == 0)
 
  195             ast->codec->bits_per_coded_sample = 4;
 
  197         ast->codec->bit_rate = ast->codec->sample_rate *
 
  198                                ast->codec->bits_per_coded_sample *
 
  199                                ast->codec->channels;
 
  202         switch (audio_format) {
 
  204                 if (ast->codec->bits_per_coded_sample == 16) {
 
  213                 if (ast->codec->bits_per_coded_sample == 8) {
 
  218                 } 
else if (ast->codec->bits_per_coded_sample == 4) {
 
  229         for (i = 0; i < 3; i++)
 
  230             error |= 
read_line(pb, line, 
sizeof(line));
 
  236                "Don't know how to split frames for video format %i. " 
  243     error |= 
read_line(pb, line, 
sizeof(line));  
 
  244     error |= 
read_line(pb, line, 
sizeof(line));  
 
  245     chunk_catalog_offset =                       
 
  247     error |= 
read_line(pb, line, 
sizeof(line));  
 
  248     error |= 
read_line(pb, line, 
sizeof(line));  
 
  249     error |= 
read_line(pb, line, 
sizeof(line));  
 
  252     avio_seek(pb, chunk_catalog_offset, SEEK_SET);
 
  253     total_audio_size = 0;
 
  254     for (i = 0; !error && i < number_of_chunks; i++) {
 
  255         int64_t 
offset, video_size, audio_size;
 
  256         error |= 
read_line(pb, line, 
sizeof(line));
 
  257         if (3 != sscanf(line, 
"%"SCNd64
" , %"SCNd64
" ; %"SCNd64,
 
  258                         &offset, &video_size, &audio_size)) {
 
  266                                audio_size, audio_size * 8, 0);
 
  267         total_audio_size += audio_size * 8;
 
  270     if (error) 
return AVERROR(EIO);
 
  313         if (ret != frame_size) {
 
  330         if (ret != index_entry->
size) {
 
static AVRational read_fps(const char *line, int *error)
Parsing for fps, which can be a fraction. 
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. 
#define AV_LOG_WARNING
Something somehow does not look correct. 
static int read_line(AVIOContext *pb, char *line, int bufsize)
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. 
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature. 
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown. 
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file. 
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). 
#define AV_PKT_FLAG_KEY
The packet contains a keyframe. 
static int rpl_read_header(AVFormatContext *s)
AVDictionary * metadata
Metadata that applies to the whole file. 
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. ...
static const uint8_t offset[127][2]
int flags
A combination of AV_PKT_FLAG values. 
int avio_r8(AVIOContext *s)
AVCodecContext * codec
Codec context associated with this stream. 
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction. 
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. 
static int rpl_probe(AVProbeData *p)
static int32_t read_int(const char *line, const char **endptr, int *error)
int width
picture width / height. 
AVInputFormat ff_rpl_demuxer
static int read_header(FFV1Context *f)
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
enum AVMediaType codec_type
AVIOContext * pb
I/O context. 
void av_packet_unref(AVPacket *pkt)
Wipe the packet. 
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A'). 
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry. 
rational number numerator/denominator 
This structure contains the data a format has to probe a file. 
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature. 
static int32_t read_line_and_int(AVIOContext *pb, int *error)
static int rpl_read_packet(AVFormatContext *s, AVPacket *pkt)
void * priv_data
Format private data. 
#define RPL_LINE_LENGTH
256 is arbitrary, but should be big enough for any reasonable file. 
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext. 
This structure stores compressed data. 
#define RPL_SIGNATURE_SIZE
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...