22 #include "libavutil/avstring.h"
23 #include "libavutil/dict.h"
28 #define RPL_SIGNATURE "ARMovie\x0A"
29 #define RPL_SIGNATURE_SIZE 8
32 #define RPL_LINE_LENGTH 256
55 for (i = 0; i < bufsize - 1; i++) {
71 unsigned long result = 0;
72 for (; *line>=
'0' && *line<=
'9'; line++) {
73 if (result > (0x7FFFFFFF - 9) / 10)
75 result = 10 * result + *line -
'0';
85 *error |=
read_line(pb, line,
sizeof(line));
86 return read_int(line, &endptr, error);
100 for (; *line>=
'0' && *line<=
'9'; line++) {
102 if (num > (INT64_MAX - 9) / 10 || den > INT64_MAX / 10)
104 num = 10 * num + *line -
'0';
118 int total_audio_size;
123 int32_t audio_format, chunk_catalog_offset, number_of_chunks;
134 error |=
read_line(pb, line,
sizeof(line));
135 error |=
read_line(pb, line,
sizeof(line));
137 error |=
read_line(pb, line,
sizeof(line));
139 error |=
read_line(pb, line,
sizeof(line));
151 error |=
read_line(pb, line,
sizeof(line));
186 ast->codec->codec_tag = audio_format;
192 if (ast->codec->bits_per_coded_sample == 0)
193 ast->codec->bits_per_coded_sample = 4;
195 ast->codec->bit_rate = ast->codec->sample_rate *
196 ast->codec->bits_per_coded_sample *
197 ast->codec->channels;
200 switch (audio_format) {
202 if (ast->codec->bits_per_coded_sample == 16) {
211 if (ast->codec->bits_per_coded_sample == 8) {
216 }
else if (ast->codec->bits_per_coded_sample == 4) {
226 for (i = 0; i < 3; i++)
227 error |=
read_line(pb, line,
sizeof(line));
233 "Don't know how to split frames for video format %i. "
240 error |=
read_line(pb, line,
sizeof(line));
241 error |=
read_line(pb, line,
sizeof(line));
242 chunk_catalog_offset =
244 error |=
read_line(pb, line,
sizeof(line));
245 error |=
read_line(pb, line,
sizeof(line));
246 error |=
read_line(pb, line,
sizeof(line));
249 avio_seek(pb, chunk_catalog_offset, SEEK_SET);
250 total_audio_size = 0;
251 for (i = 0; !error && i < number_of_chunks; i++) {
253 error |=
read_line(pb, line,
sizeof(line));
254 if (3 != sscanf(line,
"%"SCNd64
" , %"SCNd64
" ; %"SCNd64,
255 &offset, &video_size, &audio_size))
261 audio_size, audio_size * 8, 0);
262 total_audio_size += audio_size * 8;
265 if (error)
return AVERROR(EIO);
306 if (ret != frame_size) {
321 if (ret != index_entry->
size) {
static AVRational read_fps(const char *line, int *error)
Parsing for fps, which can be a fraction.
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.
#define AV_LOG_WARNING
Something somehow does not look correct.
static int64_t audio_size
static int read_line(AVIOContext *pb, char *line, int bufsize)
AVCodecContext * codec
Codec context associated with this stream.
void av_log(void *avcl, int level, const char *fmt,...) av_printf_format(3
Send the specified message to the log if the level is less than or equal to the current av_log_level...
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static const uint8_t offset[511][2]
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
static const uint8_t frame_size[4]
static int rpl_read_header(AVFormatContext *s)
void * priv_data
Format private data.
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. ...
int flags
A combination of AV_PKT_FLAG values.
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
unsigned int nb_streams
A list of all streams in the file.
static int rpl_probe(AVProbeData *p)
static int32_t read_int(const char *line, const char **endptr, int *error)
static int64_t video_size
int width
picture width / height.
AVInputFormat ff_rpl_demuxer
static int read_header(FFV1Context *f)
enum AVMediaType codec_type
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
AVIOContext * pb
I/O context.
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
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)
#define RPL_LINE_LENGTH
256 is arbitrary, but should be big enough for any reasonable file.
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...