2 * "Real" compatible demuxer.
3 * Copyright (c) 2000, 2001 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "libavutil/avassert.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/channel_layout.h"
27 #include "libavutil/internal.h"
28 #include "libavutil/intreadwrite.h"
29 #include "libavutil/dict.h"
31 #include "avio_internal.h"
36 #define DEINT_ID_GENR MKTAG('g', 'e', 'n', 'r') ///< interleaving for Cooker/ATRAC
37 #define DEINT_ID_INT0 MKTAG('I', 'n', 't', '0') ///< no interleaving needed
38 #define DEINT_ID_INT4 MKTAG('I', 'n', 't', '4') ///< interleaving for 28.8
39 #define DEINT_ID_SIPR MKTAG('s', 'i', 'p', 'r') ///< interleaving for Sipro
40 #define DEINT_ID_VBRF MKTAG('v', 'b', 'r', 'f') ///< VBR case for AAC
41 #define DEINT_ID_VBRS MKTAG('v', 'b', 'r', 's') ///< VBR case for AAC
44 AVPacket pkt
; ///< place to store merged video frame / reordered audio data
45 int videobufsize
; ///< current assembled frame size
46 int videobufpos
; ///< position for the next slice in the video buffer
47 int curpic_num
; ///< picture number of current frame
48 int cur_slice
, slices
;
49 int64_t pktpos
; ///< first slice position in file
50 /// Audio descrambling matrix parameters
51 int64_t audiotimestamp
; ///< Audio packet timestamp
52 int sub_packet_cnt
; // Subpacket counter, used while reading
53 int sub_packet_size
, sub_packet_h
, coded_framesize
; ///< Descrambling parameters from container
54 int audio_framesize
; /// Audio frame size from container
55 int sub_packet_lengths
[16]; /// Length of each subpacket
56 int32_t deint_id
; ///< deinterleaver used in audio stream
59 typedef struct RMDemuxContext
{
64 int audio_stream_num
; ///< Stream number for audio packets
65 int audio_pkt_cnt
; ///< Output packet counter
69 static int rm_read_close(AVFormatContext
*s
);
71 static inline void get_strl(AVIOContext
*pb
, char *buf
, int buf_size
, int len
)
73 int read
= avio_get_str(pb
, len
, buf
, buf_size
);
76 avio_skip(pb
, len
- read
);
79 static void get_str8(AVIOContext
*pb
, char *buf
, int buf_size
)
81 get_strl(pb
, buf
, buf_size
, avio_r8(pb
));
84 static int rm_read_extradata(AVFormatContext
*s
, AVIOContext
*pb
, AVCodecParameters
*par
, unsigned size
)
87 av_log(s
, AV_LOG_ERROR
, "extradata size %u too large\n", size
);
90 return ff_get_extradata(s
, par
, pb
, size
);
93 static void rm_read_metadata(AVFormatContext
*s
, AVIOContext
*pb
, int wide
)
98 for (i
=0; i
<FF_ARRAY_ELEMS(ff_rm_metadata
); i
++) {
99 int len
= wide
? avio_rb16(pb
) : avio_r8(pb
);
101 get_strl(pb
, buf
, sizeof(buf
), len
);
102 av_dict_set(&s
->metadata
, ff_rm_metadata
[i
], buf
, 0);
107 RMStream
*ff_rm_alloc_rmstream (void)
109 RMStream
*rms
= av_mallocz(sizeof(RMStream
));
112 rms
->curpic_num
= -1;
116 void ff_rm_free_rmstream (RMStream
*rms
)
121 av_packet_unref(&rms
->pkt
);
124 static int rm_read_audio_stream_info(AVFormatContext
*s
, AVIOContext
*pb
,
125 AVStream
*st
, RMStream
*ast
, int read_all
)
132 version
= avio_rb16(pb
); /* version */
134 unsigned bytes_per_minute
;
135 int header_size
= avio_rb16(pb
);
136 int64_t startpos
= avio_tell(pb
);
138 bytes_per_minute
= avio_rb16(pb
);
140 rm_read_metadata(s
, pb
, 0);
141 if ((startpos
+ header_size
) >= avio_tell(pb
) + 2) {
142 // fourcc (should always be "lpcJ")
144 get_str8(pb
, buf
, sizeof(buf
));
146 // Skip extra header crap (this should never happen)
147 if ((startpos
+ header_size
) > avio_tell(pb
))
148 avio_skip(pb
, header_size
+ startpos
- avio_tell(pb
));
149 if (bytes_per_minute
)
150 st
->codecpar
->bit_rate
= 8LL * bytes_per_minute
/ 60;
151 st
->codecpar
->sample_rate
= 8000;
152 st
->codecpar
->channels
= 1;
153 st
->codecpar
->channel_layout
= AV_CH_LAYOUT_MONO
;
154 st
->codecpar
->codec_type
= AVMEDIA_TYPE_AUDIO
;
155 st
->codecpar
->codec_id
= AV_CODEC_ID_RA_144
;
156 ast
->deint_id
= DEINT_ID_INT0
;
158 int flavor
, sub_packet_h
, coded_framesize
, sub_packet_size
;
159 int codecdata_length
;
160 unsigned bytes_per_minute
;
161 /* old version (4) */
162 avio_skip(pb
, 2); /* unused */
163 avio_rb32(pb
); /* .ra4 */
164 avio_rb32(pb
); /* data size */
165 avio_rb16(pb
); /* version2 */
166 avio_rb32(pb
); /* header size */
167 flavor
= avio_rb16(pb
); /* add codec info / flavor */
168 coded_framesize
= avio_rb32(pb
); /* coded frame size */
169 if (coded_framesize
< 0)
170 return AVERROR_INVALIDDATA
;
171 ast
->coded_framesize
= coded_framesize
;
173 avio_rb32(pb
); /* ??? */
174 bytes_per_minute
= avio_rb32(pb
);
176 if (bytes_per_minute
)
177 st
->codecpar
->bit_rate
= 8LL * bytes_per_minute
/ 60;
179 avio_rb32(pb
); /* ??? */
180 ast
->sub_packet_h
= sub_packet_h
= avio_rb16(pb
); /* 1 */
181 st
->codecpar
->block_align
= avio_rb16(pb
); /* frame size */
182 ast
->sub_packet_size
= sub_packet_size
= avio_rb16(pb
); /* sub packet size */
183 avio_rb16(pb
); /* ??? */
185 avio_rb16(pb
); avio_rb16(pb
); avio_rb16(pb
);
187 st
->codecpar
->sample_rate
= avio_rb16(pb
);
189 st
->codecpar
->channels
= avio_rb16(pb
);
191 ast
->deint_id
= avio_rl32(pb
);
192 if (avio_read(pb
, buf
, 4) != 4)
193 return AVERROR_INVALIDDATA
;
197 get_str8(pb
, buf
, sizeof(buf
)); /* desc */
198 ast
->deint_id
= AV_RL32(buf
);
199 get_str8(pb
, buf
, sizeof(buf
)); /* desc */
201 st
->codecpar
->codec_type
= AVMEDIA_TYPE_AUDIO
;
202 st
->codecpar
->codec_tag
= AV_RL32(buf
);
203 st
->codecpar
->codec_id
= ff_codec_get_id(ff_rm_codec_tags
,
204 st
->codecpar
->codec_tag
);
206 switch (st
->codecpar
->codec_id
) {
207 case AV_CODEC_ID_AC3
:
208 st
->need_parsing
= AVSTREAM_PARSE_FULL
;
210 case AV_CODEC_ID_RA_288
:
211 st
->codecpar
->extradata_size
= 0;
212 av_freep(&st
->codecpar
->extradata
);
213 ast
->audio_framesize
= st
->codecpar
->block_align
;
214 st
->codecpar
->block_align
= coded_framesize
;
216 case AV_CODEC_ID_COOK
:
217 st
->need_parsing
= AVSTREAM_PARSE_HEADERS
;
218 case AV_CODEC_ID_ATRAC3
:
219 case AV_CODEC_ID_SIPR
:
221 codecdata_length
= 0;
223 avio_rb16(pb
); avio_r8(pb
);
226 codecdata_length
= avio_rb32(pb
);
227 if((unsigned)codecdata_length
> INT_MAX
- AV_INPUT_BUFFER_PADDING_SIZE
){
228 av_log(s
, AV_LOG_ERROR
, "codecdata_length too large\n");
233 ast
->audio_framesize
= st
->codecpar
->block_align
;
234 if (st
->codecpar
->codec_id
== AV_CODEC_ID_SIPR
) {
236 av_log(s
, AV_LOG_ERROR
, "bad SIPR file flavor %d\n",
240 st
->codecpar
->block_align
= ff_sipr_subpk_size
[flavor
];
241 st
->need_parsing
= AVSTREAM_PARSE_FULL_RAW
;
243 if(sub_packet_size
<= 0){
244 av_log(s
, AV_LOG_ERROR
, "sub_packet_size is invalid\n");
247 st
->codecpar
->block_align
= ast
->sub_packet_size
;
249 if ((ret
= rm_read_extradata(s
, pb
, st
->codecpar
, codecdata_length
)) < 0)
253 case AV_CODEC_ID_AAC
:
254 avio_rb16(pb
); avio_r8(pb
);
257 codecdata_length
= avio_rb32(pb
);
258 if((unsigned)codecdata_length
> INT_MAX
- AV_INPUT_BUFFER_PADDING_SIZE
){
259 av_log(s
, AV_LOG_ERROR
, "codecdata_length too large\n");
262 if (codecdata_length
>= 1) {
264 if ((ret
= rm_read_extradata(s
, pb
, st
->codecpar
, codecdata_length
- 1)) < 0)
269 switch (ast
->deint_id
) {
271 if (ast
->coded_framesize
> ast
->audio_framesize
||
273 ast
->coded_framesize
* (uint64_t)sub_packet_h
> (2LL + (sub_packet_h
& 1)) * ast
->audio_framesize
)
274 return AVERROR_INVALIDDATA
;
275 if (ast
->coded_framesize
* (uint64_t)sub_packet_h
!= 2LL*ast
->audio_framesize
) {
276 avpriv_request_sample(s
, "mismatching interleaver parameters");
277 return AVERROR_INVALIDDATA
;
281 if (ast
->sub_packet_size
<= 0 ||
282 ast
->sub_packet_size
> ast
->audio_framesize
)
283 return AVERROR_INVALIDDATA
;
284 if (ast
->audio_framesize
% ast
->sub_packet_size
)
285 return AVERROR_INVALIDDATA
;
293 av_log(s
, AV_LOG_ERROR
,"Unknown interleaver %"PRIX32
"\n", ast
->deint_id
);
294 return AVERROR_INVALIDDATA
;
296 if (ast
->deint_id
== DEINT_ID_INT4
||
297 ast
->deint_id
== DEINT_ID_GENR
||
298 ast
->deint_id
== DEINT_ID_SIPR
) {
299 if (st
->codecpar
->block_align
<= 0 ||
300 ast
->audio_framesize
* (uint64_t)sub_packet_h
> (unsigned)INT_MAX
||
301 ast
->audio_framesize
* sub_packet_h
< st
->codecpar
->block_align
)
302 return AVERROR_INVALIDDATA
;
303 if (av_new_packet(&ast
->pkt
, ast
->audio_framesize
* sub_packet_h
) < 0)
304 return AVERROR(ENOMEM
);
311 rm_read_metadata(s
, pb
, 0);
317 int ff_rm_read_mdpr_codecdata(AVFormatContext
*s
, AVIOContext
*pb
,
318 AVStream
*st
, RMStream
*rst
,
319 unsigned int codec_data_size
, const uint8_t *mime
)
326 if (codec_data_size
> INT_MAX
)
327 return AVERROR_INVALIDDATA
;
328 if (codec_data_size
== 0)
332 if ( st
->codecpar
->codec_type
!= AVMEDIA_TYPE_UNKNOWN
333 && st
->codecpar
->codec_type
!= AVMEDIA_TYPE_DATA
)
334 return AVERROR_INVALIDDATA
;
336 avpriv_set_pts_info(st
, 64, 1, 1000);
337 codec_pos
= avio_tell(pb
);
340 if (v
== MKTAG(0xfd, 'a', 'r', '.')) {
342 if (rm_read_audio_stream_info(s
, pb
, st
, rst
, 0))
344 } else if (v
== MKBETAG('L', 'S', 'D', ':')) {
345 avio_seek(pb
, -4, SEEK_CUR
);
346 if ((ret
= rm_read_extradata(s
, pb
, st
->codecpar
, codec_data_size
)) < 0)
349 st
->codecpar
->codec_type
= AVMEDIA_TYPE_AUDIO
;
350 st
->codecpar
->codec_tag
= AV_RL32(st
->codecpar
->extradata
);
351 st
->codecpar
->codec_id
= ff_codec_get_id(ff_rm_codec_tags
,
352 st
->codecpar
->codec_tag
);
353 } else if(mime
&& !strcmp(mime
, "logical-fileinfo")){
354 int stream_count
, rule_count
, property_count
, i
;
355 ff_free_stream(s
, st
);
356 if (avio_rb16(pb
) != 0) {
357 av_log(s
, AV_LOG_WARNING
, "Unsupported version\n");
360 stream_count
= avio_rb16(pb
);
361 avio_skip(pb
, 6*stream_count
);
362 rule_count
= avio_rb16(pb
);
363 avio_skip(pb
, 2*rule_count
);
364 property_count
= avio_rb16(pb
);
365 for(i
=0; i
<property_count
; i
++){
366 uint8_t name
[128], val
[128];
368 if (avio_rb16(pb
) != 0) {
369 av_log(s
, AV_LOG_WARNING
, "Unsupported Name value property version\n");
370 goto skip
; //FIXME skip just this one
372 get_str8(pb
, name
, sizeof(name
));
373 switch(avio_rb32(pb
)) {
374 case 2: get_strl(pb
, val
, sizeof(val
), avio_rb16(pb
));
375 av_dict_set(&s
->metadata
, name
, val
, 0);
377 default: avio_skip(pb
, avio_rb16(pb
));
382 if (avio_rl32(pb
) != MKTAG('V', 'I', 'D', 'O')) {
384 av_log(s
, AV_LOG_WARNING
, "Unsupported stream type %08x\n", v
);
387 st
->codecpar
->codec_tag
= avio_rl32(pb
);
388 st
->codecpar
->codec_id
= ff_codec_get_id(ff_rm_codec_tags
,
389 st
->codecpar
->codec_tag
);
390 av_log(s
, AV_LOG_TRACE
, "%"PRIX32
" %X\n",
391 st
->codecpar
->codec_tag
, MKTAG('R', 'V', '2', '0'));
392 if (st
->codecpar
->codec_id
== AV_CODEC_ID_NONE
)
394 st
->codecpar
->width
= avio_rb16(pb
);
395 st
->codecpar
->height
= avio_rb16(pb
);
396 avio_skip(pb
, 2); // looks like bits per sample
397 avio_skip(pb
, 4); // always zero?
398 st
->codecpar
->codec_type
= AVMEDIA_TYPE_VIDEO
;
399 st
->need_parsing
= AVSTREAM_PARSE_TIMESTAMPS
;
402 if ((ret
= rm_read_extradata(s
, pb
, st
->codecpar
, codec_data_size
- (avio_tell(pb
) - codec_pos
))) < 0)
406 av_reduce(&st
->avg_frame_rate
.den
, &st
->avg_frame_rate
.num
,
407 0x10000, fps
, (1 << 30) - 1);
408 #if FF_API_R_FRAME_RATE
409 st
->r_frame_rate
= st
->avg_frame_rate
;
411 } else if (s
->error_recognition
& AV_EF_EXPLODE
) {
412 av_log(s
, AV_LOG_ERROR
, "Invalid framerate\n");
413 return AVERROR_INVALIDDATA
;
418 /* skip codec info */
419 size
= avio_tell(pb
) - codec_pos
;
420 if (codec_data_size
>= size
) {
421 avio_skip(pb
, codec_data_size
- size
);
423 av_log(s
, AV_LOG_WARNING
, "codec_data_size %u < size %d\n", codec_data_size
, size
);
429 /** this function assumes that the demuxer has already seeked to the start
430 * of the INDX chunk, and will bail out if not. */
431 static int rm_read_index(AVFormatContext
*s
)
433 AVIOContext
*pb
= s
->pb
;
434 unsigned int size
, n_pkts
, str_id
, next_off
, n
, pos
, pts
;
438 if (avio_rl32(pb
) != MKTAG('I','N','D','X'))
440 size
= avio_rb32(pb
);
444 n_pkts
= avio_rb32(pb
);
445 str_id
= avio_rb16(pb
);
446 next_off
= avio_rb32(pb
);
447 for (n
= 0; n
< s
->nb_streams
; n
++)
448 if (s
->streams
[n
]->id
== str_id
) {
452 if (n
== s
->nb_streams
) {
453 av_log(s
, AV_LOG_ERROR
,
454 "Invalid stream index %d for index at pos %"PRId64
"\n",
455 str_id
, avio_tell(pb
));
457 } else if ((avio_size(pb
) - avio_tell(pb
)) / 14 < n_pkts
) {
458 av_log(s
, AV_LOG_ERROR
,
459 "Nr. of packets in packet index for stream index %d "
460 "exceeds filesize (%"PRId64
" at %"PRId64
" = %"PRId64
")\n",
461 str_id
, avio_size(pb
), avio_tell(pb
),
462 (avio_size(pb
) - avio_tell(pb
)) / 14);
466 for (n
= 0; n
< n_pkts
; n
++) {
468 return AVERROR_INVALIDDATA
;
472 avio_skip(pb
, 4); /* packet no. */
474 av_add_index_entry(st
, pos
, pts
, 0, 0, AVINDEX_KEYFRAME
);
478 if (next_off
&& avio_tell(pb
) < next_off
&&
479 avio_seek(pb
, next_off
, SEEK_SET
) < 0) {
480 av_log(s
, AV_LOG_ERROR
,
481 "Non-linear index detected, not supported\n");
489 static int rm_read_header_old(AVFormatContext
*s
)
491 RMDemuxContext
*rm
= s
->priv_data
;
495 st
= avformat_new_stream(s
, NULL
);
498 st
->priv_data
= ff_rm_alloc_rmstream();
500 return AVERROR(ENOMEM
);
501 return rm_read_audio_stream_info(s
, s
->pb
, st
, st
->priv_data
, 1);
504 static int rm_read_multi(AVFormatContext
*s
, AVIOContext
*pb
,
505 AVStream
*st
, char *mime
)
507 int number_of_streams
= avio_rb16(pb
);
511 for (i
= 0; i
<number_of_streams
; i
++)
513 number_of_mdpr
= avio_rb16(pb
);
514 if (number_of_mdpr
!= 1) {
515 avpriv_request_sample(s
, "MLTI with multiple (%d) MDPR", number_of_mdpr
);
517 for (i
= 0; i
< number_of_mdpr
; i
++) {
520 st2
= avformat_new_stream(s
, NULL
);
522 ret
= AVERROR(ENOMEM
);
525 st2
->id
= st
->id
+ (i
<<16);
526 st2
->codecpar
->bit_rate
= st
->codecpar
->bit_rate
;
527 st2
->start_time
= st
->start_time
;
528 st2
->duration
= st
->duration
;
529 st2
->codecpar
->codec_type
= AVMEDIA_TYPE_DATA
;
530 st2
->priv_data
= ff_rm_alloc_rmstream();
532 return AVERROR(ENOMEM
);
536 size2
= avio_rb32(pb
);
537 ret
= ff_rm_read_mdpr_codecdata(s
, s
->pb
, st2
, st2
->priv_data
,
545 static int rm_read_header(AVFormatContext
*s
)
547 RMDemuxContext
*rm
= s
->priv_data
;
549 AVIOContext
*pb
= s
->pb
;
552 unsigned int start_time
, duration
;
553 unsigned int data_off
= 0, indx_off
= 0;
554 char buf
[128], mime
[128];
561 if (tag
== MKTAG('.', 'r', 'a', 0xfd)) {
562 /* very old .ra format */
563 return rm_read_header_old(s
);
564 } else if (tag
!= MKTAG('.', 'R', 'M', 'F')) {
568 tag_size
= avio_rb32(pb
);
570 return AVERROR_INVALIDDATA
;
571 avio_skip(pb
, tag_size
- 8);
574 ret
= AVERROR_INVALIDDATA
;
578 tag_size
= avio_rb32(pb
);
580 av_log(s
, AV_LOG_TRACE
, "tag=%s size=%d\n",
581 av_fourcc2str(tag
), tag_size
);
582 if (tag_size
< 10 && tag
!= MKTAG('D', 'A', 'T', 'A'))
585 case MKTAG('P', 'R', 'O', 'P'):
587 avio_rb32(pb
); /* max bit rate */
588 avio_rb32(pb
); /* avg bit rate */
589 avio_rb32(pb
); /* max packet size */
590 avio_rb32(pb
); /* avg packet size */
591 avio_rb32(pb
); /* nb packets */
592 duration
= avio_rb32(pb
); /* duration */
593 s
->duration
= av_rescale(duration
, AV_TIME_BASE
, 1000);
594 avio_rb32(pb
); /* preroll */
595 indx_off
= avio_rb32(pb
); /* index offset */
596 data_off
= avio_rb32(pb
); /* data offset */
597 avio_rb16(pb
); /* nb streams */
598 flags
= avio_rb16(pb
); /* flags */
600 case MKTAG('C', 'O', 'N', 'T'):
601 rm_read_metadata(s
, pb
, 1);
603 case MKTAG('M', 'D', 'P', 'R'):
604 st
= avformat_new_stream(s
, NULL
);
606 ret
= AVERROR(ENOMEM
);
609 st
->id
= avio_rb16(pb
);
610 avio_rb32(pb
); /* max bit rate */
611 st
->codecpar
->bit_rate
= avio_rb32(pb
); /* bit rate */
612 avio_rb32(pb
); /* max packet size */
613 avio_rb32(pb
); /* avg packet size */
614 start_time
= avio_rb32(pb
); /* start time */
615 avio_rb32(pb
); /* preroll */
616 duration
= avio_rb32(pb
); /* duration */
617 st
->start_time
= start_time
;
618 st
->duration
= duration
;
620 s
->duration
= AV_NOPTS_VALUE
;
621 get_str8(pb
, buf
, sizeof(buf
)); /* desc */
622 get_str8(pb
, mime
, sizeof(mime
)); /* mimetype */
623 st
->codecpar
->codec_type
= AVMEDIA_TYPE_DATA
;
624 st
->priv_data
= ff_rm_alloc_rmstream();
626 return AVERROR(ENOMEM
);
628 size
= avio_rb32(pb
);
629 codec_pos
= avio_tell(pb
);
631 ffio_ensure_seekback(pb
, 4);
633 if (v
== MKBETAG('M', 'L', 'T', 'I')) {
634 ret
= rm_read_multi(s
, s
->pb
, st
, mime
);
637 avio_seek(pb
, codec_pos
+ size
, SEEK_SET
);
640 ret
= ff_rm_read_mdpr_codecdata(s
, s
->pb
, st
, st
->priv_data
,
647 case MKTAG('D', 'A', 'T', 'A'):
650 /* unknown tag: skip it */
651 avio_skip(pb
, tag_size
- 10);
656 rm
->nb_packets
= avio_rb32(pb
); /* number of packets */
657 if (!rm
->nb_packets
&& (flags
& 4))
658 rm
->nb_packets
= 3600 * 25;
659 avio_rb32(pb
); /* next data header */
662 data_off
= avio_tell(pb
) - 18;
663 if (indx_off
&& (pb
->seekable
& AVIO_SEEKABLE_NORMAL
) &&
664 !(s
->flags
& AVFMT_FLAG_IGNIDX
) &&
665 avio_seek(pb
, indx_off
, SEEK_SET
) >= 0) {
667 avio_seek(pb
, data_off
+ 18, SEEK_SET
);
677 static int get_num(AVIOContext
*pb
, int *len
)
689 return (n
<< 16) | n1
;
693 /* multiple of 20 bytes for ra144 (ugly) */
694 #define RAW_PACKET_SIZE 1000
696 static int rm_sync(AVFormatContext
*s
, int64_t *timestamp
, int *flags
, int *stream_index
, int64_t *pos
){
697 RMDemuxContext
*rm
= s
->priv_data
;
698 AVIOContext
*pb
= s
->pb
;
700 uint32_t state
=0xFFFFFFFF;
702 while(!avio_feof(pb
)){
705 *pos
= avio_tell(pb
) - 3;
706 if(rm
->remaining_len
> 0){
707 num
= rm
->current_stream
;
709 len
= rm
->remaining_len
;
710 *timestamp
= AV_NOPTS_VALUE
;
713 state
= (state
<<8) + avio_r8(pb
);
715 if(state
== MKBETAG('I', 'N', 'D', 'X')){
717 int64_t expected_len
;
720 n_pkts
= avio_rb32(pb
);
721 expected_len
= 20 + n_pkts
* 14LL;
723 if (len
== 20 && expected_len
<= INT_MAX
)
724 /* some files don't add index entries to chunk size... */
726 else if (len
!= expected_len
)
727 av_log(s
, AV_LOG_WARNING
,
728 "Index size %d (%d pkts) is wrong, should be %"PRId64
".\n",
729 len
, n_pkts
, expected_len
);
732 len
-= 14; // we already read part of the index header
734 } else if (state
== MKBETAG('D','A','T','A')) {
735 av_log(s
, AV_LOG_WARNING
,
736 "DATA tag in middle of chunk, file may be broken.\n");
739 if(state
> (unsigned)0xFFFF || state
<= 12)
745 *timestamp
= avio_rb32(pb
);
746 mlti_id
= (avio_r8(pb
) >> 1) - 1;
747 mlti_id
= FFMAX(mlti_id
, 0) << 16;
748 *flags
= avio_r8(pb
); /* flags */
750 for(i
=0;i
<s
->nb_streams
;i
++) {
752 if (mlti_id
+ num
== st
->id
)
755 if (i
== s
->nb_streams
) {
757 /* skip packet if unknown number */
759 rm
->remaining_len
= 0;
769 static int rm_assemble_video_frame(AVFormatContext
*s
, AVIOContext
*pb
,
770 RMDemuxContext
*rm
, RMStream
*vst
,
771 AVPacket
*pkt
, int len
, int *pseq
,
775 int seq
= 0, pic_num
= 0, len2
= 0, pos
= 0; //init to silence compiler warning
779 hdr
= avio_r8(pb
); len
--;
782 if(type
!= 3){ // not frame as a part of packet
783 seq
= avio_r8(pb
); len
--;
785 if(type
!= 1){ // not whole frame
786 len2
= get_num(pb
, &len
);
787 pos
= get_num(pb
, &len
);
788 pic_num
= avio_r8(pb
); len
--;
791 av_log(s
, AV_LOG_ERROR
, "Insufficient data\n");
794 rm
->remaining_len
= len
;
795 if(type
&1){ // frame, not slice
796 if(type
== 3){ // frame as a part of packet
800 if(rm
->remaining_len
< len
) {
801 av_log(s
, AV_LOG_ERROR
, "Insufficient remaining len\n");
804 rm
->remaining_len
-= len
;
805 if ((ret
= av_new_packet(pkt
, len
+ 9)) < 0)
808 AV_WL32(pkt
->data
+ 1, 1);
809 AV_WL32(pkt
->data
+ 5, 0);
810 if ((ret
= avio_read(pb
, pkt
->data
+ 9, len
)) != len
) {
811 av_packet_unref(pkt
);
812 av_log(s
, AV_LOG_ERROR
, "Failed to read %d bytes\n", len
);
813 return ret
< 0 ? ret
: AVERROR(EIO
);
817 //now we have to deal with single slice
820 if((seq
& 0x7F) == 1 || vst
->curpic_num
!= pic_num
){
821 if (len2
> ffio_limit(pb
, len2
)) {
822 av_log(s
, AV_LOG_ERROR
, "Impossibly sized packet\n");
823 return AVERROR_INVALIDDATA
;
825 vst
->slices
= ((hdr
& 0x3F) << 1) + 1;
826 vst
->videobufsize
= len2
+ 8*vst
->slices
+ 1;
827 av_packet_unref(&vst
->pkt
); //FIXME this should be output.
828 if ((ret
= av_new_packet(&vst
->pkt
, vst
->videobufsize
)) < 0)
830 memset(vst
->pkt
.data
, 0, vst
->pkt
.size
);
831 vst
->videobufpos
= 8*vst
->slices
+ 1;
833 vst
->curpic_num
= pic_num
;
834 vst
->pktpos
= avio_tell(pb
);
837 len
= FFMIN(len
, pos
);
839 if(++vst
->cur_slice
> vst
->slices
) {
840 av_log(s
, AV_LOG_ERROR
, "cur slice %d, too large\n", vst
->cur_slice
);
844 return AVERROR(ENOMEM
);
845 AV_WL32(vst
->pkt
.data
- 7 + 8*vst
->cur_slice
, 1);
846 AV_WL32(vst
->pkt
.data
- 3 + 8*vst
->cur_slice
, vst
->videobufpos
- 8*vst
->slices
- 1);
847 if(vst
->videobufpos
+ len
> vst
->videobufsize
) {
848 av_log(s
, AV_LOG_ERROR
, "outside videobufsize\n");
851 if (avio_read(pb
, vst
->pkt
.data
+ vst
->videobufpos
, len
) != len
)
853 vst
->videobufpos
+= len
;
854 rm
->remaining_len
-= len
;
856 if (type
== 2 || vst
->videobufpos
== vst
->videobufsize
) {
857 vst
->pkt
.data
[0] = vst
->cur_slice
-1;
858 av_packet_move_ref(pkt
, &vst
->pkt
);
859 if(vst
->slices
!= vst
->cur_slice
) //FIXME find out how to set slices correct from the begin
860 memmove(pkt
->data
+ 1 + 8*vst
->cur_slice
, pkt
->data
+ 1 + 8*vst
->slices
,
861 vst
->videobufpos
- 1 - 8*vst
->slices
);
862 pkt
->size
= vst
->videobufpos
+ 8*(vst
->cur_slice
- vst
->slices
);
863 pkt
->pts
= AV_NOPTS_VALUE
;
864 pkt
->pos
= vst
->pktpos
;
873 rm_ac3_swap_bytes (AVStream
*st
, AVPacket
*pkt
)
878 if (st
->codecpar
->codec_id
== AV_CODEC_ID_AC3
) {
880 for (j
=0;j
<pkt
->size
;j
+=2) {
881 FFSWAP(int, ptr
[0], ptr
[1]);
887 static int readfull(AVFormatContext
*s
, AVIOContext
*pb
, uint8_t *dst
, int n
) {
888 int ret
= avio_read(pb
, dst
, n
);
890 if (ret
>= 0) memset(dst
+ ret
, 0, n
- ret
);
891 else memset(dst
, 0, n
);
892 av_log(s
, AV_LOG_ERROR
, "Failed to fully read block\n");
898 ff_rm_parse_packet (AVFormatContext
*s
, AVIOContext
*pb
,
899 AVStream
*st
, RMStream
*ast
, int len
, AVPacket
*pkt
,
900 int *seq
, int flags
, int64_t timestamp
)
902 RMDemuxContext
*rm
= s
->priv_data
;
905 if (st
->codecpar
->codec_type
== AVMEDIA_TYPE_VIDEO
) {
906 rm
->current_stream
= st
->id
;
907 ret
= rm_assemble_video_frame(s
, pb
, rm
, ast
, pkt
, len
, seq
, ×tamp
);
909 return ret
< 0 ? ret
: -1; //got partial frame or error
910 } else if (st
->codecpar
->codec_type
== AVMEDIA_TYPE_AUDIO
) {
911 if ((ast
->deint_id
== DEINT_ID_GENR
) ||
912 (ast
->deint_id
== DEINT_ID_INT4
) ||
913 (ast
->deint_id
== DEINT_ID_SIPR
)) {
915 int sps
= ast
->sub_packet_size
;
916 int cfs
= ast
->coded_framesize
;
917 int h
= ast
->sub_packet_h
;
918 int y
= ast
->sub_packet_cnt
;
919 int w
= ast
->audio_framesize
;
922 y
= ast
->sub_packet_cnt
= 0;
924 ast
->audiotimestamp
= timestamp
;
926 switch (ast
->deint_id
) {
928 for (x
= 0; x
< h
/2; x
++)
929 readfull(s
, pb
, ast
->pkt
.data
+x
*2*w
+y
*cfs
, cfs
);
932 for (x
= 0; x
< w
/sps
; x
++)
933 readfull(s
, pb
, ast
->pkt
.data
+sps
*(h
*x
+((h
+1)/2)*(y
&1)+(y
>>1)), sps
);
936 readfull(s
, pb
, ast
->pkt
.data
+ y
* w
, w
);
940 if (++(ast
->sub_packet_cnt
) < h
)
942 if (ast
->deint_id
== DEINT_ID_SIPR
)
943 ff_rm_reorder_sipr_data(ast
->pkt
.data
, h
, w
);
945 ast
->sub_packet_cnt
= 0;
946 rm
->audio_stream_num
= st
->index
;
947 if (st
->codecpar
->block_align
<= 0) {
948 av_log(s
, AV_LOG_ERROR
, "Invalid block alignment %d\n", st
->codecpar
->block_align
);
949 return AVERROR_INVALIDDATA
;
951 rm
->audio_pkt_cnt
= h
* w
/ st
->codecpar
->block_align
;
952 } else if ((ast
->deint_id
== DEINT_ID_VBRF
) ||
953 (ast
->deint_id
== DEINT_ID_VBRS
)) {
955 rm
->audio_stream_num
= st
->index
;
956 ast
->sub_packet_cnt
= (avio_rb16(pb
) & 0xf0) >> 4;
957 if (ast
->sub_packet_cnt
) {
958 for (x
= 0; x
< ast
->sub_packet_cnt
; x
++)
959 ast
->sub_packet_lengths
[x
] = avio_rb16(pb
);
960 rm
->audio_pkt_cnt
= ast
->sub_packet_cnt
;
961 ast
->audiotimestamp
= timestamp
;
965 ret
= av_get_packet(pb
, pkt
, len
);
968 rm_ac3_swap_bytes(st
, pkt
);
971 ret
= av_get_packet(pb
, pkt
, len
);
976 pkt
->stream_index
= st
->index
;
978 pkt
->pts
= timestamp
;
980 pkt
->flags
|= AV_PKT_FLAG_KEY
;
982 return st
->codecpar
->codec_type
== AVMEDIA_TYPE_AUDIO
? rm
->audio_pkt_cnt
: 0;
986 ff_rm_retrieve_cache (AVFormatContext
*s
, AVIOContext
*pb
,
987 AVStream
*st
, RMStream
*ast
, AVPacket
*pkt
)
989 RMDemuxContext
*rm
= s
->priv_data
;
992 av_assert0 (rm
->audio_pkt_cnt
> 0);
994 if (ast
->deint_id
== DEINT_ID_VBRF
||
995 ast
->deint_id
== DEINT_ID_VBRS
) {
996 ret
= av_get_packet(pb
, pkt
, ast
->sub_packet_lengths
[ast
->sub_packet_cnt
- rm
->audio_pkt_cnt
]);
1000 ret
= av_new_packet(pkt
, st
->codecpar
->block_align
);
1003 memcpy(pkt
->data
, ast
->pkt
.data
+ st
->codecpar
->block_align
* //FIXME avoid this
1004 (ast
->sub_packet_h
* ast
->audio_framesize
/ st
->codecpar
->block_align
- rm
->audio_pkt_cnt
),
1005 st
->codecpar
->block_align
);
1007 rm
->audio_pkt_cnt
--;
1008 if ((pkt
->pts
= ast
->audiotimestamp
) != AV_NOPTS_VALUE
) {
1009 ast
->audiotimestamp
= AV_NOPTS_VALUE
;
1010 pkt
->flags
= AV_PKT_FLAG_KEY
;
1013 pkt
->stream_index
= st
->index
;
1015 return rm
->audio_pkt_cnt
;
1018 static int rm_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
1020 RMDemuxContext
*rm
= s
->priv_data
;
1021 AVStream
*st
= NULL
; // init to silence compiler warning
1022 int i
, res
, seq
= 1;
1023 int64_t timestamp
, pos
, len
;
1027 if (rm
->audio_pkt_cnt
) {
1028 // If there are queued audio packet return them first
1029 st
= s
->streams
[rm
->audio_stream_num
];
1030 res
= ff_rm_retrieve_cache(s
, s
->pb
, st
, st
->priv_data
, pkt
);
1035 if (rm
->old_format
) {
1039 ast
= st
->priv_data
;
1040 timestamp
= AV_NOPTS_VALUE
;
1041 len
= !ast
->audio_framesize
? RAW_PACKET_SIZE
:
1042 ast
->coded_framesize
* (int64_t)ast
->sub_packet_h
/ 2;
1044 return AVERROR_INVALIDDATA
;
1045 flags
= (seq
++ == 1) ? 2 : 0;
1046 pos
= avio_tell(s
->pb
);
1048 len
= rm_sync(s
, ×tamp
, &flags
, &i
, &pos
);
1053 if (avio_feof(s
->pb
))
1056 return AVERROR(EIO
);
1058 res
= ff_rm_parse_packet (s
, s
->pb
, st
, st
->priv_data
, len
, pkt
,
1059 &seq
, flags
, timestamp
);
1062 if((flags
&2) && (seq
&0x7F) == 1)
1063 av_add_index_entry(st
, pos
, timestamp
, 0, 0, AVINDEX_KEYFRAME
);
1068 if( (st
->discard
>= AVDISCARD_NONKEY
&& !(flags
&2))
1069 || st
->discard
>= AVDISCARD_ALL
){
1070 av_packet_unref(pkt
);
1078 static int rm_read_close(AVFormatContext
*s
)
1082 for (i
=0;i
<s
->nb_streams
;i
++)
1083 ff_rm_free_rmstream(s
->streams
[i
]->priv_data
);
1088 static int rm_probe(const AVProbeData
*p
)
1090 /* check file header */
1091 if ((p
->buf
[0] == '.' && p
->buf
[1] == 'R' &&
1092 p
->buf
[2] == 'M' && p
->buf
[3] == 'F' &&
1093 p
->buf
[4] == 0 && p
->buf
[5] == 0) ||
1094 (p
->buf
[0] == '.' && p
->buf
[1] == 'r' &&
1095 p
->buf
[2] == 'a' && p
->buf
[3] == 0xfd))
1096 return AVPROBE_SCORE_MAX
;
1101 static int64_t rm_read_dts(AVFormatContext
*s
, int stream_index
,
1102 int64_t *ppos
, int64_t pos_limit
)
1104 RMDemuxContext
*rm
= s
->priv_data
;
1106 int stream_index2
, flags
, len
, h
;
1111 return AV_NOPTS_VALUE
;
1113 if (avio_seek(s
->pb
, pos
, SEEK_SET
) < 0)
1114 return AV_NOPTS_VALUE
;
1116 rm
->remaining_len
=0;
1121 len
= rm_sync(s
, &dts
, &flags
, &stream_index2
, &pos
);
1123 return AV_NOPTS_VALUE
;
1125 st
= s
->streams
[stream_index2
];
1126 if (st
->codecpar
->codec_type
== AVMEDIA_TYPE_VIDEO
) {
1127 h
= avio_r8(s
->pb
); len
--;
1129 seq
= avio_r8(s
->pb
); len
--;
1133 if((flags
&2) && (seq
&0x7F) == 1){
1134 av_log(s
, AV_LOG_TRACE
, "%d %d-%d %"PRId64
" %d\n",
1135 flags
, stream_index2
, stream_index
, dts
, seq
);
1136 av_add_index_entry(st
, pos
, dts
, 0, 0, AVINDEX_KEYFRAME
);
1137 if(stream_index2
== stream_index
)
1141 avio_skip(s
->pb
, len
);
1147 static int rm_read_seek(AVFormatContext
*s
, int stream_index
,
1148 int64_t pts
, int flags
)
1150 RMDemuxContext
*rm
= s
->priv_data
;
1152 if (ff_seek_frame_binary(s
, stream_index
, pts
, flags
) < 0)
1154 rm
->audio_pkt_cnt
= 0;
1159 AVInputFormat ff_rm_demuxer
= {
1161 .long_name
= NULL_IF_CONFIG_SMALL("RealMedia"),
1162 .priv_data_size
= sizeof(RMDemuxContext
),
1163 .read_probe
= rm_probe
,
1164 .read_header
= rm_read_header
,
1165 .read_packet
= rm_read_packet
,
1166 .read_close
= rm_read_close
,
1167 .read_timestamp
= rm_read_dts
,
1168 .read_seek
= rm_read_seek
,
1171 AVInputFormat ff_rdt_demuxer
= {
1173 .long_name
= NULL_IF_CONFIG_SMALL("RDT demuxer"),
1174 .priv_data_size
= sizeof(RMDemuxContext
),
1175 .read_close
= rm_read_close
,
1176 .flags
= AVFMT_NOFILE
,
1179 static int ivr_probe(const AVProbeData
*p
)
1181 if (memcmp(p
->buf
, ".R1M\x0\x1\x1", 7) &&
1182 memcmp(p
->buf
, ".REC", 4))
1185 return AVPROBE_SCORE_MAX
;
1188 static int ivr_read_header(AVFormatContext
*s
)
1190 unsigned tag
, type
, len
, tlen
, value
;
1191 int i
, j
, n
, count
, nb_streams
= 0, ret
;
1192 uint8_t key
[256], val
[256];
1193 AVIOContext
*pb
= s
->pb
;
1195 int64_t pos
, offset
=0, temp
;
1197 pos
= avio_tell(pb
);
1198 tag
= avio_rl32(pb
);
1199 if (tag
== MKTAG('.','R','1','M')) {
1200 if (avio_rb16(pb
) != 1)
1201 return AVERROR_INVALIDDATA
;
1202 if (avio_r8(pb
) != 1)
1203 return AVERROR_INVALIDDATA
;
1204 len
= avio_rb32(pb
);
1207 temp
= avio_rb64(pb
);
1208 while (!avio_feof(pb
) && temp
) {
1210 temp
= avio_rb64(pb
);
1213 return AVERROR_INVALIDDATA
;
1214 avio_skip(pb
, offset
- avio_tell(pb
));
1215 if (avio_r8(pb
) != 1)
1216 return AVERROR_INVALIDDATA
;
1217 len
= avio_rb32(pb
);
1219 if (avio_r8(pb
) != 2)
1220 return AVERROR_INVALIDDATA
;
1222 pos
= avio_tell(pb
);
1223 tag
= avio_rl32(pb
);
1226 if (tag
!= MKTAG('.','R','E','C'))
1227 return AVERROR_INVALIDDATA
;
1229 if (avio_r8(pb
) != 0)
1230 return AVERROR_INVALIDDATA
;
1231 count
= avio_rb32(pb
);
1232 for (i
= 0; i
< count
; i
++) {
1234 return AVERROR_INVALIDDATA
;
1237 tlen
= avio_rb32(pb
);
1238 avio_get_str(pb
, tlen
, key
, sizeof(key
));
1239 len
= avio_rb32(pb
);
1241 avio_get_str(pb
, len
, val
, sizeof(val
));
1242 av_log(s
, AV_LOG_DEBUG
, "%s = '%s'\n", key
, val
);
1243 } else if (type
== 4) {
1244 av_log(s
, AV_LOG_DEBUG
, "%s = '0x", key
);
1245 for (j
= 0; j
< len
; j
++) {
1247 return AVERROR_INVALIDDATA
;
1248 av_log(s
, AV_LOG_DEBUG
, "%X", avio_r8(pb
));
1250 av_log(s
, AV_LOG_DEBUG
, "'\n");
1251 } else if (len
== 4 && type
== 3 && !strncmp(key
, "StreamCount", tlen
)) {
1252 nb_streams
= value
= avio_rb32(pb
);
1253 } else if (len
== 4 && type
== 3) {
1254 value
= avio_rb32(pb
);
1255 av_log(s
, AV_LOG_DEBUG
, "%s = %d\n", key
, value
);
1257 av_log(s
, AV_LOG_DEBUG
, "Skipping unsupported key: %s\n", key
);
1262 for (n
= 0; n
< nb_streams
; n
++) {
1263 st
= avformat_new_stream(s
, NULL
);
1265 return AVERROR(ENOMEM
);
1266 st
->priv_data
= ff_rm_alloc_rmstream();
1268 return AVERROR(ENOMEM
);
1270 if (avio_r8(pb
) != 1)
1271 return AVERROR_INVALIDDATA
;
1273 count
= avio_rb32(pb
);
1274 for (i
= 0; i
< count
; i
++) {
1276 return AVERROR_INVALIDDATA
;
1279 tlen
= avio_rb32(pb
);
1280 avio_get_str(pb
, tlen
, key
, sizeof(key
));
1281 len
= avio_rb32(pb
);
1283 avio_get_str(pb
, len
, val
, sizeof(val
));
1284 av_log(s
, AV_LOG_DEBUG
, "%s = '%s'\n", key
, val
);
1285 } else if (type
== 4 && !strncmp(key
, "OpaqueData", tlen
)) {
1286 ret
= ffio_ensure_seekback(pb
, 4);
1289 if (avio_rb32(pb
) == MKBETAG('M', 'L', 'T', 'I')) {
1290 ret
= rm_read_multi(s
, pb
, st
, NULL
);
1293 return AVERROR_INVALIDDATA
;
1294 avio_seek(pb
, -4, SEEK_CUR
);
1295 ret
= ff_rm_read_mdpr_codecdata(s
, pb
, st
, st
->priv_data
, len
, NULL
);
1300 } else if (type
== 4) {
1303 av_log(s
, AV_LOG_DEBUG
, "%s = '0x", key
);
1304 for (j
= 0; j
< len
; j
++) {
1306 return AVERROR_INVALIDDATA
;
1307 av_log(s
, AV_LOG_DEBUG
, "%X", avio_r8(pb
));
1309 av_log(s
, AV_LOG_DEBUG
, "'\n");
1310 } else if (len
== 4 && type
== 3 && !strncmp(key
, "Duration", tlen
)) {
1311 st
->duration
= avio_rb32(pb
);
1312 } else if (len
== 4 && type
== 3) {
1313 value
= avio_rb32(pb
);
1314 av_log(s
, AV_LOG_DEBUG
, "%s = %d\n", key
, value
);
1316 av_log(s
, AV_LOG_DEBUG
, "Skipping unsupported key: %s\n", key
);
1322 if (avio_r8(pb
) != 6)
1323 return AVERROR_INVALIDDATA
;
1325 avio_skip(pb
, avio_rb64(pb
) + pos
- avio_tell(s
->pb
));
1326 if (avio_r8(pb
) != 8)
1327 return AVERROR_INVALIDDATA
;
1333 static int ivr_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
1335 RMDemuxContext
*rm
= s
->priv_data
;
1336 int ret
= AVERROR_EOF
, opcode
;
1337 AVIOContext
*pb
= s
->pb
;
1338 unsigned size
, index
;
1341 if (avio_feof(pb
) || rm
->data_end
)
1344 pos
= avio_tell(pb
);
1347 if (rm
->audio_pkt_cnt
) {
1348 // If there are queued audio packet return them first
1351 st
= s
->streams
[rm
->audio_stream_num
];
1352 ret
= ff_rm_retrieve_cache(s
, pb
, st
, st
->priv_data
, pkt
);
1357 if (rm
->remaining_len
) {
1358 avio_skip(pb
, rm
->remaining_len
);
1359 rm
->remaining_len
= 0;
1365 opcode
= avio_r8(pb
);
1370 pts
= avio_rb32(pb
);
1371 index
= avio_rb16(pb
);
1372 if (index
>= s
->nb_streams
)
1373 return AVERROR_INVALIDDATA
;
1376 size
= avio_rb32(pb
);
1379 if (size
< 1 || size
> INT_MAX
/4) {
1380 av_log(s
, AV_LOG_ERROR
, "size %u is invalid\n", size
);
1381 return AVERROR_INVALIDDATA
;
1384 st
= s
->streams
[index
];
1385 ret
= ff_rm_parse_packet(s
, pb
, st
, st
->priv_data
, size
, pkt
,
1395 pkt
->stream_index
= index
;
1396 } else if (opcode
== 7) {
1397 pos
= avio_rb64(pb
);
1403 av_log(s
, AV_LOG_ERROR
, "Unsupported opcode=%d at %"PRIX64
"\n", opcode
, avio_tell(pb
) - 1);
1404 return AVERROR(EIO
);
1414 AVInputFormat ff_ivr_demuxer
= {
1416 .long_name
= NULL_IF_CONFIG_SMALL("IVR (Internet Video Recording)"),
1417 .priv_data_size
= sizeof(RMDemuxContext
),
1418 .read_probe
= ivr_probe
,
1419 .read_header
= ivr_read_header
,
1420 .read_packet
= ivr_read_packet
,
1421 .read_close
= rm_read_close
,
1422 .extensions
= "ivr",