libavformat/rm.h
7b2a2ce5
 /*
  * "Real" compatible muxer and demuxer.
406792e7
  * Copyright (c) 2000, 2001 Fabrice Bellard
7b2a2ce5
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
98790382
 #ifndef AVFORMAT_RM_H
 #define AVFORMAT_RM_H
7b2a2ce5
 
 #include "avformat.h"
74e8ccad
 #include "internal.h"
7b2a2ce5
 
88e70e1b
 extern const char * const ff_rm_metadata[4];
74e8ccad
 extern const AVCodecTag ff_rm_codec_tags[];
7379d5bc
 
ba614729
 typedef struct RMStream RMStream;
 
 RMStream *ff_rm_alloc_rmstream (void);
 void      ff_rm_free_rmstream  (RMStream *rms);
 
ff13ba92
 /*< input format for Realmedia-style RTSP streams */
66355be3
 extern AVInputFormat ff_rdt_demuxer;
ff13ba92
 
0fd36362
 /**
  * Read the MDPR chunk, which contains stream-specific codec initialization
  * parameters.
  *
471fe57e
  * @param s context containing RMContext and AVIOContext for stream reading
fcc995a5
  * @param pb context to read the data from
0fd36362
  * @param st the stream that the MDPR chunk belongs to and where to store the
  *           parameters read from the chunk into
886e89d0
  * @param rst real-specific stream information
79d5045d
  * @param codec_data_size size of the MDPR chunk
0fd36362
  * @return 0 on success, errno codes on error
  */
471fe57e
 int ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVIOContext *pb,
886e89d0
                                AVStream *st, RMStream *rst,
19a61bf3
                                int codec_data_size, const uint8_t *mime);
0fd36362
 
 /**
  * Parse one rm-stream packet from the input bytestream.
  *
471fe57e
  * @param s context containing RMContext and AVIOContext for stream reading
fcc995a5
  * @param pb context to read the data from
0fd36362
  * @param st stream to which the packet to be read belongs
886e89d0
  * @param rst Real-specific stream information
0fd36362
  * @param len packet length to read from the input
  * @param pkt packet location to store the parsed packet data
  * @param seq pointer to an integer containing the sequence number, may be
  *            updated
34bddc39
  * @param flags the packet flags
  * @param ts timestamp of the current packet
bf7e799c
  * @return <0 on error, 0 if a packet was placed in the pkt pointer. A
  *         value >0 means that no data was placed in pkt, but that cached
c5efef7b
  *         data is available by calling ff_rm_retrieve_cache().
0fd36362
  */
471fe57e
 int ff_rm_parse_packet (AVFormatContext *s, AVIOContext *pb,
886e89d0
                         AVStream *st, RMStream *rst, int len,
34bddc39
                         AVPacket *pkt, int *seq, int flags, int64_t ts);
0fd36362
 
 /**
  * Retrieve one cached packet from the rm-context. The real container can
  * store several packets (as interpreted by the codec) in a single container
  * packet, which means the demuxer holds some back when the first container
  * packet is parsed and returned. The result is that rm->audio_pkt_cnt is
  * a positive number, the amount of cached packets. Using this function, each
  * of those packets can be retrieved sequentially.
  *
471fe57e
  * @param s context containing RMContext and AVIOContext for stream reading
fcc995a5
  * @param pb context to read the data from
0fd36362
  * @param st stream that this packet belongs to
886e89d0
  * @param rst Real-specific stream information
0fd36362
  * @param pkt location to store the packet data
32e543f8
  * @return the number of samples left for subsequent calls to this same
a9f84821
  *          function, or 0 if all samples have been retrieved.
0fd36362
  */
471fe57e
 int ff_rm_retrieve_cache (AVFormatContext *s, AVIOContext *pb,
ade8fb4d
                           AVStream *st, RMStream *rst, AVPacket *pkt);
0fd36362
 
98790382
 #endif /* AVFORMAT_RM_H */