34 #define ASF_INDEXED_INTERVAL 10000000
35 #define ASF_INDEX_BLOCK (1<<9)
36 #define ASF_PAYLOADS_PER_PACKET 63
38 #define ASF_PACKET_ERROR_CORRECTION_DATA_SIZE 0x2
39 #define ASF_PACKET_ERROR_CORRECTION_FLAGS \
40 (ASF_PACKET_FLAG_ERROR_CORRECTION_PRESENT | \
41 ASF_PACKET_ERROR_CORRECTION_DATA_SIZE)
43 #if (ASF_PACKET_ERROR_CORRECTION_FLAGS != 0)
44 # define ASF_PACKET_ERROR_CORRECTION_FLAGS_FIELD_SIZE 1
46 # define ASF_PACKET_ERROR_CORRECTION_FLAGS_FIELD_SIZE 0
49 #define ASF_PPI_PROPERTY_FLAGS \
50 (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_BYTE | \
51 ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_DWORD | \
52 ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_BYTE | \
53 ASF_PL_FLAG_STREAM_NUMBER_LENGTH_FIELD_IS_BYTE)
55 #define ASF_PPI_LENGTH_TYPE_FLAGS 0
57 #define ASF_PAYLOAD_FLAGS ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD
59 #if (ASF_PPI_FLAG_SEQUENCE_FIELD_IS_BYTE == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_SEQUENCE_FIELD_SIZE))
60 # define ASF_PPI_SEQUENCE_FIELD_SIZE 1
62 #if (ASF_PPI_FLAG_SEQUENCE_FIELD_IS_WORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_SEQUENCE_FIELD_SIZE))
63 # define ASF_PPI_SEQUENCE_FIELD_SIZE 2
65 #if (ASF_PPI_FLAG_SEQUENCE_FIELD_IS_DWORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_SEQUENCE_FIELD_SIZE))
66 # define ASF_PPI_SEQUENCE_FIELD_SIZE 4
68 #ifndef ASF_PPI_SEQUENCE_FIELD_SIZE
69 # define ASF_PPI_SEQUENCE_FIELD_SIZE 0
72 #if (ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_BYTE == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE))
73 # define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 1
75 #if (ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_WORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE))
76 # define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 2
78 #if (ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_DWORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE))
79 # define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 4
81 #ifndef ASF_PPI_PACKET_LENGTH_FIELD_SIZE
82 # define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 0
85 #if (ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_BYTE == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE))
86 # define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 1
88 #if (ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_WORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE))
89 # define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 2
91 #if (ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_DWORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE))
92 # define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 4
94 #ifndef ASF_PPI_PADDING_LENGTH_FIELD_SIZE
95 # define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 0
98 #if (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_BYTE == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE))
99 # define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 1
101 #if (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_WORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE))
102 # define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 2
104 #if (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_DWORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE))
105 # define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 4
107 #ifndef ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE
108 # define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 0
111 #if (ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_BYTE == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE))
112 # define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 1
114 #if (ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_WORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE))
115 # define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 2
117 #if (ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_DWORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE))
118 # define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 4
120 #ifndef ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE
121 # define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 0
124 #if (ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_BYTE == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE))
125 # define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 1
127 #if (ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_WORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE))
128 # define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 2
130 #if (ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_DWORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE))
131 # define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 4
133 #ifndef ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE
134 # define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 0
137 #if (ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_BYTE == (ASF_PAYLOAD_FLAGS & ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE))
138 # define ASF_PAYLOAD_LENGTH_FIELD_SIZE 1
140 #if (ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD == (ASF_PAYLOAD_FLAGS & ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE))
141 # define ASF_PAYLOAD_LENGTH_FIELD_SIZE 2
143 #ifndef ASF_PAYLOAD_LENGTH_FIELD_SIZE
144 # define ASF_PAYLOAD_LENGTH_FIELD_SIZE 0
147 #define PACKET_HEADER_MIN_SIZE \
148 (ASF_PACKET_ERROR_CORRECTION_FLAGS_FIELD_SIZE + \
149 ASF_PACKET_ERROR_CORRECTION_DATA_SIZE + \
152 ASF_PPI_PACKET_LENGTH_FIELD_SIZE + \
153 ASF_PPI_SEQUENCE_FIELD_SIZE + \
154 ASF_PPI_PADDING_LENGTH_FIELD_SIZE + \
159 #define ASF_PAYLOAD_REPLICATED_DATA_LENGTH 0x08
161 #define PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD \
163 ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE + \
164 ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE + \
165 ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE + \
166 ASF_PAYLOAD_REPLICATED_DATA_LENGTH)
168 #define PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS \
170 ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE + \
171 ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE + \
172 ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE + \
173 ASF_PAYLOAD_REPLICATED_DATA_LENGTH + \
174 ASF_PAYLOAD_LENGTH_FIELD_SIZE)
176 #define SINGLE_PAYLOAD_HEADERS \
177 (PACKET_HEADER_MIN_SIZE + \
178 PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD)
180 #define MULTI_PAYLOAD_HEADERS \
181 (PACKET_HEADER_MIN_SIZE + \
183 2 * PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS)
185 #define DATA_HEADER_SIZE 50
187 #define PACKET_SIZE_MAX 65536
188 #define PACKET_SIZE_MIN 100
262 #define PREROLL_TIME 3100
302 int payload_length,
int flags)
308 length = payload_length + 8;
322 t = ti * INT64_C(10);
323 t += INT64_C(116444736000000000);
333 if (pres_time <= asf->index_ptr[i].send_time)
339 return send_time / 10000;
387 int64_t data_chunk_size)
392 int header_size,
n, extra_size, extra_size2, wav_extra_size;
393 int has_title, has_aspect_ratio = 0;
396 int64_t header_offset, cur_pos, hpos;
399 int audio_language_counts[128] = { 0 };
410 has_title = tags[0] || tags[1] || tags[2] || tags[3] || tags[4];
438 if (!strcmp(asf->
languages[i], iso6391lang)) {
490 int nb_audio_languages = 0;
501 if (audio_language_counts[i])
502 nb_audio_languages++;
504 if (nb_audio_languages > 1) {
509 if (audio_language_counts[i]) {
542 if (has_aspect_ratio) {
601 if (metadata_count) {
630 extra_size = 18 + wav_extra_size;
636 extra_size = 0x33 + wav_extra_size;
662 if (wavsize != extra_size) {
711 desc =
"Windows Media Audio V8";
713 desc = codec_desc ? codec_desc->
name :
NULL;
750 header_size = cur_pos - header_offset;
754 avio_seek(pb, header_offset - 10 - 30, SEEK_SET);
756 avio_seek(pb, header_offset - 2 - 30, SEEK_SET);
761 header_size += 24 + 6;
762 avio_seek(pb, header_offset - 14, SEEK_SET);
829 unsigned sendtime,
unsigned duration,
830 int nb_payloads,
int padsize)
879 int packet_hdr_size, packet_filled_size;
893 av_assert0(packet_hdr_size <= asf->packet_size_left);
908 int64_t presentation_time,
int m_obj_size,
909 int m_obj_offset,
int payload_len,
int flags)
931 avio_wl32(pb, (uint32_t) presentation_time);
940 int m_obj_size,
int flags)
943 int m_obj_offset, payload_len, frag_len1;
946 while (m_obj_offset < m_obj_size) {
947 payload_len = m_obj_size - m_obj_offset;
954 frag_len1 = multi_payload_constant - 1;
965 if (frag_len1 < payload_len &&
977 if (payload_len > frag_len1)
978 payload_len = frag_len1;
979 else if (payload_len == (frag_len1 - 1))
980 payload_len = frag_len1 - 2;
983 m_obj_size, m_obj_offset, payload_len, flags);
996 m_obj_offset += payload_len;
1010 uint32_t packet_number, uint16_t packet_count,
1011 uint64_t packet_offset)
1057 uint32_t packet_number;
1089 uint16_t packet_count = asf->
nb_packets - packet_number;
1090 ret =
update_index(s, start_sec, packet_number, packet_count, offset);
1100 uint16_t max, uint32_t
count)
1106 avio_wl64(pb, 24 + 16 + 8 + 4 + 4 + (4 + 2) * count);
1111 for (i = 0; i <
count; i++) {
1122 int64_t file_size, data_size;
1156 #if CONFIG_ASF_MUXER
1157 static const AVClass asf_muxer_class = {
1167 .mime_type =
"video/x-ms-asf",
1168 .extensions =
"asf,wmv,wma",
1179 .priv_class = &asf_muxer_class,
1183 #if CONFIG_ASF_STREAM_MUXER
1184 static const AVClass asf_stream_muxer_class = {
1192 .
name =
"asf_stream",
1194 .mime_type =
"video/x-ms-asf",
1195 .extensions =
"asf,wmv,wma",
1206 .priv_class = &asf_stream_muxer_class,
unsigned int nb_chapters
Number of chapters in AVChapter array.
const ff_asf_guid ff_asf_header
const char const char void * val
void avio_wl16(AVIOContext *s, unsigned int val)
static int asf_write_markers(AVFormatContext *s)
#define ASF_PAYLOAD_FLAGS
const char * languages[128]
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
int ff_put_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int flags)
Write WAVEFORMAT header structure.
const ff_asf_guid ff_asf_codec_comment_header
const ff_asf_guid ff_asf_metadata_header
#define PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD
void ff_put_guid(AVIOContext *s, const ff_asf_guid *g)
#define LIBAVUTIL_VERSION_INT
unsigned char * buf_ptr
Current position in the buffer.
unsigned int packet_nb_payloads
#define PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS
AVRational sample_aspect_ratio
Video only.
static int asf_write_packet(AVFormatContext *s, AVPacket *pkt)
uint64_t data_offset
beginning of the first data packet
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
static int asf_write_index(AVFormatContext *s, const ASFIndex *index, uint16_t max, uint32_t count)
uint32_t next_packet_number
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
unsigned char * buffer
Start of the buffer.
static int put_payload_parsing_info(AVFormatContext *s, unsigned sendtime, unsigned duration, int nb_payloads, int padsize)
static int asf_write_trailer(AVFormatContext *s)
uint16_t next_packet_count
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
This struct describes the properties of an encoded stream.
#define SINGLE_PAYLOAD_HEADERS
const ff_asf_guid ff_asf_reserved_4
const ff_asf_guid ff_asf_data_header
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
void avio_wl32(AVIOContext *s, unsigned int val)
const ff_asf_guid ff_asf_audio_stream
const ff_asf_guid ff_asf_mutex_language
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
static int asf_write_header(AVFormatContext *s)
ASFStream streams[128]
it's max number and it's not that big
AVStream ** streams
A list of all streams in the file.
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
int64_t max_interleave_delta
Maximum buffering duration for interleaving.
#define ASF_PPI_LENGTH_TYPE_FLAGS
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
void avio_wl64(AVIOContext *s, uint64_t val)
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
AVDictionary * metadata
Metadata that applies to the whole file.
const ff_asf_guid ff_asf_head1_guid
const ff_asf_guid ff_asf_simple_index_header
const ff_asf_guid ff_asf_head2_guid
static void put_payload_header(AVFormatContext *s, ASFStream *stream, int64_t presentation_time, int m_obj_size, int m_obj_offset, int payload_len, int flags)
const char * av_convert_lang_to(const char *lang, enum AVLangCodespace target_codespace)
Convert a language code to a target codespace.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
int64_t packet_timestamp_start
enum AVMediaType codec_type
General type of the encoded data.
const ff_asf_guid ff_asf_video_conceal_none
static const AVOption asf_options[]
simple assert() macros that are a bit more flexible than ISO C assert().
#define ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_WORD
static const uint8_t offset[127][2]
void ff_put_bmp_header(AVIOContext *pb, AVCodecParameters *par, const AVCodecTag *tags, int for_asf, int ignore_extradata)
const AVCodecTag ff_codec_wav_tags[]
int flags
A combination of AV_PKT_FLAG values.
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
int extradata_size
Size of the extradata content in bytes.
#define MULTI_PAYLOAD_HEADERS
#define ASF_PPI_FLAG_MULTIPLE_PAYLOADS_PRESENT
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
int block_align
Audio only.
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
const AVCodecTag ff_codec_bmp_tags[]
static void put_chunk(AVFormatContext *s, int type, int payload_length, int flags)
#define ASF_PACKET_ERROR_CORRECTION_FLAGS
GLsizei GLboolean const GLfloat * value
const ff_asf_guid ff_asf_extended_content_header
static int write_trailer(AVFormatContext *s1)
static int32_t get_send_time(ASFContext *asf, int64_t pres_time, uint64_t *offset)
#define ASF_PAYLOADS_PER_PACKET
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
#define ASF_PAYLOAD_REPLICATED_DATA_LENGTH
int avoid_negative_ts
Avoid negative timestamps during muxing.
const ff_asf_guid ff_asf_my_guid
#define FF_ARRAY_ELEMS(a)
#define ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_BYTE
const ff_asf_guid ff_asf_extended_stream_properties_object
#define ASF_PACKET_ERROR_CORRECTION_DATA_SIZE
#define ASF_PPI_PROPERTY_FLAGS
const ff_asf_guid ff_asf_file_header
AVIOContext * pb
I/O context.
const ff_asf_guid ff_asf_video_stream
int64_t packet_timestamp_end
void avio_w8(AVIOContext *s, int b)
uint16_t stream_language_index
static void flush_packet(AVFormatContext *s)
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Describe the class of an AVClass context structure.
rational number numerator/denominator
const ff_asf_guid ff_asf_stream_header
static const AVCodecTag codec_asf_bmp_tags[]
int avio_put_str16le(AVIOContext *s, const char *str)
Convert an UTF-8 string to UTF-16LE and write it.
const AVMetadataConv ff_asf_metadata_conv[]
const char * name
Name of the codec described by this descriptor.
static int64_t put_header(AVIOContext *pb, const ff_asf_guid *g)
int64_t duration
in 100ns units
const ff_asf_guid ff_asf_group_mutual_exclusion_object
static int64_t unix_to_file_time(int64_t ti)
This struct describes the properties of a single codec described by an AVCodecID. ...
#define ASF_INDEXED_INTERVAL
const ff_asf_guid ff_asf_comment_header
static void put_frame(AVFormatContext *s, ASFStream *stream, AVStream *avst, int64_t timestamp, const uint8_t *buf, int m_obj_size, int flags)
static int64_t pts
Global timestamp for the audio frames.
const ff_asf_guid ff_asf_language_guid
static void end_header(AVIOContext *pb, int64_t pos)
uint8_t packet_buf[PACKET_SIZE_MAX]
#define ASF_PL_FLAG_KEY_FRAME
int ffio_init_context(AVIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
uint64_t nb_packets
how many packets are there in the file, invalid if broadcasting
const ff_asf_guid ff_asf_audio_conceal_spread
const ff_asf_guid ff_asf_codec_comment1_header
AVRational time_base
time base in which the start/end timestamps are specified
static int asf_write_header1(AVFormatContext *s, int64_t file_size, int64_t data_chunk_size)
void * priv_data
Format private data.
uint32_t nb_index_memory_alloc
static void write_header(FFV1Context *f)
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
static int asf_write_stream_header(AVFormatContext *s)
static void put_str16(AVIOContext *s, const char *tag)
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
AVCodecParameters * codecpar
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
#define PACKET_HEADER_MIN_SIZE
const ff_asf_guid ff_asf_marker_header
static int update_index(AVFormatContext *s, int start_sec, uint32_t packet_number, uint16_t packet_count, uint64_t packet_offset)
unsigned char multi_payloads_present
#define MKTAG(a, b, c, d)
This structure stores compressed data.
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
uint64_t next_packet_offset
3-char terminological language codes as per ISO-IEC 639-2
#define AV_NOPTS_VALUE
Undefined timestamp value.
#define FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX
Tell ff_put_wav_header() to use WAVEFORMATEX even for PCM codecs.