| 
    FFmpeg
    
   | 
 
#include "libavcodec/get_bits.h"#include "libavcodec/put_bits.h"#include "libavcodec/codec_id.h"#include "libavcodec/codec_par.h"#include "libavcodec/packet.h"#include "libavcodec/mpeg4audio.h"#include "libavcodec/mpeg4audio_copy_pce.h"#include "libavutil/opt.h"#include "avformat.h"#include "apetag.h"#include "id3v2.h"#include "mux.h"Go to the source code of this file.
Data Structures | |
| struct | ADTSContext | 
Macros | |
| #define | ADTS_HEADER_SIZE 7 | 
| #define | ADTS_MAX_FRAME_BYTES ((1 << 14) - 1) | 
| #define | ENC AV_OPT_FLAG_ENCODING_PARAM | 
| #define | OFFSET(obj) offsetof(ADTSContext, obj) | 
Functions | |
| static int | adts_decode_extradata (AVFormatContext *s, ADTSContext *adts, const uint8_t *buf, int size) | 
| static int | adts_init (AVFormatContext *s) | 
| static int | adts_write_header (AVFormatContext *s) | 
| static int | adts_write_frame_header (AVFormatContext *s, ADTSContext *ctx, uint8_t *buf, int size, int pce_size) | 
| static int | adts_write_packet (AVFormatContext *s, AVPacket *pkt) | 
| static int | adts_write_trailer (AVFormatContext *s) | 
Variables | |
| static const AVOption | options [] | 
| static const AVClass | adts_muxer_class | 
| const FFOutputFormat | ff_adts_muxer | 
| #define ENC AV_OPT_FLAG_ENCODING_PARAM | 
| #define OFFSET | ( | obj | ) | offsetof(ADTSContext, obj) | 
      
  | 
  static | 
Definition at line 53 of file adtsenc.c.
Referenced by adts_init(), and adts_write_packet().
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
Definition at line 130 of file adtsenc.c.
Referenced by adts_write_packet().
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
| const FFOutputFormat ff_adts_muxer | 
 1.8.17