FFmpeg
|
#include "libavcodec/get_bits.h"
#include "libavcodec/put_bits.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/mpeg4audio.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "apetag.h"
#include "id3v2.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 << 13) - 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_write_header (AVFormatContext *s) |
static int | adts_write_frame_header (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 |
AVOutputFormat | ff_adts_muxer |
#define ADTS_HEADER_SIZE 7 |
Definition at line 32 of file adtsenc.c.
Referenced by adts_write_frame_header(), and adts_write_packet().
#define ADTS_MAX_FRAME_BYTES ((1 << 13) - 1) |
Definition at line 46 of file adtsenc.c.
Referenced by adts_write_frame_header().
#define ENC AV_OPT_FLAG_ENCODING_PARAM |
#define OFFSET | ( | obj | ) | offsetof(ADTSContext, obj) |
|
static |
Definition at line 48 of file adtsenc.c.
Referenced by adts_write_header().
|
static |
|
static |
Definition at line 111 of file adtsenc.c.
Referenced by adts_write_packet().
|
static |
|
static |
|
static |
|
static |
AVOutputFormat ff_adts_muxer |