| 
    FFmpeg
    
   | 
 
#include "config_components.h"#include "libavutil/avassert.h"#include "libavutil/dict.h"#include "libavutil/mathematics.h"#include "libavutil/opt.h"#include "libavcodec/codec_desc.h"#include "avformat.h"#include "avlanguage.h"#include "avio_internal.h"#include "internal.h"#include "mux.h"#include "riff.h"#include "asf.h"Go to the source code of this file.
Data Structures | |
| struct | ASFStream | 
| struct | ASFContext | 
Functions | |
| static void | put_str16 (AVIOContext *s, AVIOContext *dyn_buf, const char *tag) | 
| static int64_t | put_header (AVIOContext *pb, const ff_asf_guid *g) | 
| static void | end_header (AVIOContext *pb, int64_t pos) | 
| static void | put_chunk (AVFormatContext *s, int type, int payload_length, int flags) | 
| static int64_t | unix_to_file_time (int64_t ti) | 
| static int32_t | get_send_time (ASFContext *asf, int64_t pres_time, uint64_t *offset) | 
| static void | asf_write_markers (AVFormatContext *s, AVIOContext *dyn_buf) | 
| static int | asf_write_header1 (AVFormatContext *s, int64_t file_size, int64_t data_chunk_size) | 
| static int | asf_write_header (AVFormatContext *s) | 
| static int | asf_write_stream_header (AVFormatContext *s) | 
| static int | put_payload_parsing_info (AVFormatContext *s, unsigned sendtime, unsigned duration, int nb_payloads, int padsize) | 
| static void | flush_packet (AVFormatContext *s) | 
| 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) | 
| static void | put_frame (AVFormatContext *s, ASFStream *stream, AVStream *avst, int64_t timestamp, const uint8_t *buf, int m_obj_size, int flags) | 
| static int | update_index (AVFormatContext *s, int start_sec, uint32_t packet_number, uint16_t packet_count, uint64_t packet_offset) | 
| static int | asf_write_packet (AVFormatContext *s, AVPacket *pkt) | 
| static int | asf_write_index (AVFormatContext *s, const ASFIndex *index, uint16_t max, uint32_t count) | 
| static int | asf_write_trailer (AVFormatContext *s) | 
| static void | asf_deinit (AVFormatContext *s) | 
Variables | |
| static const AVCodecTag | codec_asf_bmp_tags [] | 
| static const AVCodecTag *const | asf_codec_tags [] | 
| static const AVOption | asf_options [] | 
| static const AVClass | asf_muxer_class | 
| #define ASF_PACKET_ERROR_CORRECTION_FLAGS | 
| #define ASF_PPI_PROPERTY_FLAGS | 
| #define ASF_PAYLOAD_FLAGS ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD | 
| #define PACKET_HEADER_MIN_SIZE | 
| #define PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD | 
| #define PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS | 
| #define SINGLE_PAYLOAD_HEADERS | 
| #define MULTI_PAYLOAD_HEADERS | 
      
  | 
  static | 
Definition at line 246 of file asfenc.c.
Referenced by asf_write_header1().
      
  | 
  static | 
Definition at line 258 of file asfenc.c.
Referenced by asf_write_header1(), and asf_write_markers().
      
  | 
  static | 
Definition at line 269 of file asfenc.c.
Referenced by asf_write_header1(), and asf_write_markers().
      
  | 
  static | 
Definition at line 280 of file asfenc.c.
Referenced by asf_write_header1(), asf_write_trailer(), and flush_packet().
      
  | 
  static | 
Definition at line 297 of file asfenc.c.
Referenced by asf_write_header1().
      
  | 
  static | 
Definition at line 306 of file asfenc.c.
Referenced by asf_write_markers().
      
  | 
  static | 
Definition at line 320 of file asfenc.c.
Referenced by asf_write_header1().
      
  | 
  static | 
Definition at line 359 of file asfenc.c.
Referenced by asf_write_header(), and asf_write_trailer().
      
  | 
  static | 
Definition at line 747 of file asfenc.c.
Referenced by asf_write_stream_header().
      
  | 
  static | 
      
  | 
  static | 
Definition at line 793 of file asfenc.c.
Referenced by flush_packet().
      
  | 
  static | 
Definition at line 840 of file asfenc.c.
Referenced by asf_write_trailer(), and put_frame().
      
  | 
  static | 
Definition at line 871 of file asfenc.c.
Referenced by put_frame().
      
  | 
  static | 
Definition at line 902 of file asfenc.c.
Referenced by asf_write_packet().
      
  | 
  static | 
Definition at line 973 of file asfenc.c.
Referenced by asf_write_packet(), and asf_write_trailer().
      
  | 
  static | 
      
  | 
  static | 
Definition at line 1061 of file asfenc.c.
Referenced by asf_write_trailer().
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
 1.8.17