00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef AVFORMAT_INTERNAL_H
00022 #define AVFORMAT_INTERNAL_H
00023
00024 #include <stdint.h>
00025 #include "avformat.h"
00026
00027 #define MAX_URL_SIZE 4096
00028
00029 #ifdef DEBUG
00030 # define hex_dump_debug(class, buf, size) av_hex_dump_log(class, AV_LOG_DEBUG, buf, size)
00031 #else
00032 # define hex_dump_debug(class, buf, size)
00033 #endif
00034
00035 typedef struct AVCodecTag {
00036 enum AVCodecID id;
00037 unsigned int tag;
00038 } AVCodecTag;
00039
00040 typedef struct CodecMime{
00041 char str[32];
00042 enum AVCodecID id;
00043 } CodecMime;
00044
00045 #ifdef __GNUC__
00046 #define dynarray_add(tab, nb_ptr, elem)\
00047 do {\
00048 __typeof__(tab) _tab = (tab);\
00049 __typeof__(elem) _elem = (elem);\
00050 (void)sizeof(**_tab == _elem); \
00051 av_dynarray_add(_tab, nb_ptr, _elem);\
00052 } while(0)
00053 #else
00054 #define dynarray_add(tab, nb_ptr, elem)\
00055 do {\
00056 av_dynarray_add((tab), nb_ptr, (elem));\
00057 } while(0)
00058 #endif
00059
00060 struct tm *ff_brktimegm(time_t secs, struct tm *tm);
00061
00062 char *ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase);
00063
00072 int ff_hex_to_data(uint8_t *data, const char *p);
00073
00074 void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
00075
00081 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
00082 int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
00083
00084 void ff_read_frame_flush(AVFormatContext *s);
00085
00086 #define NTP_OFFSET 2208988800ULL
00087 #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
00088
00090 uint64_t ff_ntp_time(void);
00091
00113 int ff_url_join(char *str, int size, const char *proto,
00114 const char *authorization, const char *hostname,
00115 int port, const char *fmt, ...) av_printf_format(7, 8);
00116
00135 void ff_sdp_write_media(char *buff, int size, AVStream *st, int idx,
00136 const char *dest_addr, const char *dest_type,
00137 int port, int ttl, AVFormatContext *fmt);
00138
00150 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
00151 AVFormatContext *src);
00152
00156 int ff_get_v_length(uint64_t val);
00157
00161 void ff_put_v(AVIOContext *bc, uint64_t val);
00162
00174 int ff_get_line(AVIOContext *s, char *buf, int maxlen);
00175
00176 #define SPACE_CHARS " \t\r\n"
00177
00188 typedef void (*ff_parse_key_val_cb)(void *context, const char *key,
00189 int key_len, char **dest, int *dest_len);
00199 void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf,
00200 void *context);
00201
00206 int ff_find_stream_index(AVFormatContext *s, int id);
00207
00211 int ff_index_search_timestamp(const AVIndexEntry *entries, int nb_entries,
00212 int64_t wanted_timestamp, int flags);
00213
00217 int ff_add_index_entry(AVIndexEntry **index_entries,
00218 int *nb_index_entries,
00219 unsigned int *index_entries_allocated_size,
00220 int64_t pos, int64_t timestamp, int size, int distance, int flags);
00221
00233 AVChapter *avpriv_new_chapter(AVFormatContext *s, int id, AVRational time_base,
00234 int64_t start, int64_t end, const char *title);
00235
00241 void ff_reduce_index(AVFormatContext *s, int stream_index);
00242
00251 void ff_make_absolute_url(char *buf, int size, const char *base,
00252 const char *rel);
00253
00254 enum AVCodecID ff_guess_image2_codec(const char *filename);
00255
00259 int64_t ff_iso8601_to_unix_time(const char *datestr);
00260
00268 int ff_seek_frame_binary(AVFormatContext *s, int stream_index,
00269 int64_t target_ts, int flags);
00270
00279 void ff_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
00280
00287 int64_t ff_gen_search(AVFormatContext *s, int stream_index,
00288 int64_t target_ts, int64_t pos_min,
00289 int64_t pos_max, int64_t pos_limit,
00290 int64_t ts_min, int64_t ts_max,
00291 int flags, int64_t *ts_ret,
00292 int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
00293
00304 void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits,
00305 unsigned int pts_num, unsigned int pts_den);
00306
00311 int ff_add_param_change(AVPacket *pkt, int32_t channels,
00312 uint64_t channel_layout, int32_t sample_rate,
00313 int32_t width, int32_t height);
00314
00319 int ff_framehash_write_header(AVFormatContext *s);
00320
00328 int ff_read_packet(AVFormatContext *s, AVPacket *pkt);
00329
00345 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
00346 AVPacket *pkt, int flush);
00347
00348 void ff_free_stream(AVFormatContext *s, AVStream *st);
00349
00353 void ff_compute_frame_duration(int *pnum, int *pden, AVStream *st,
00354 AVCodecParserContext *pc, AVPacket *pkt);
00355
00356 int ff_get_audio_frame_size(AVCodecContext *enc, int size, int mux);
00357
00358 unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id);
00359
00360 enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag);
00361
00375 enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags);
00376
00384 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precission);
00385
00386 #endif