FFmpeg
|
#include "avformat.h"
#include "avio_internal.h"
#include "id3v1.h"
#include "id3v2.h"
#include "rawenc.h"
#include "libavutil/avstring.h"
#include "libavcodec/mpegaudio.h"
#include "libavcodec/mpegaudiodata.h"
#include "libavcodec/mpegaudiodecheader.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/dict.h"
#include "libavutil/avassert.h"
#include "libavutil/crc.h"
#include "libavutil/mathematics.h"
#include "libavutil/replaygain.h"
Go to the source code of this file.
Data Structures | |
struct | MP3Context |
Macros | |
#define | XING_NUM_BAGS 400 |
#define | XING_TOC_SIZE 100 |
#define | XING_SIZE 156 |
Functions | |
static int | id3v1_set_string (AVFormatContext *s, const char *key, uint8_t *buf, int buf_size) |
static int | id3v1_create_tag (AVFormatContext *s, uint8_t *buf) |
static int | mp3_write_xing (AVFormatContext *s) |
static void | mp3_xing_add_frame (MP3Context *mp3, AVPacket *pkt) |
static int | mp3_write_audio_packet (AVFormatContext *s, AVPacket *pkt) |
static int | mp3_queue_flush (AVFormatContext *s) |
static void | mp3_update_xing (AVFormatContext *s) |
static int | mp3_write_trailer (struct AVFormatContext *s) |
static int | query_codec (enum AVCodecID id, int std_compliance) |
static int | mp3_write_packet (AVFormatContext *s, AVPacket *pkt) |
static int | mp3_write_header (struct AVFormatContext *s) |
Write an ID3v2 header at beginning of stream. More... | |
Variables | |
static const uint8_t | xing_offtbl [2][2] = {{32, 17}, {17, 9}} |
static const AVOption | options [] |
static const AVClass | mp3_muxer_class |
AVOutputFormat | ff_mp3_muxer |
|
static |
Definition at line 39 of file mp3enc.c.
Referenced by id3v1_create_tag().
|
static |
Definition at line 48 of file mp3enc.c.
Referenced by mp3_write_trailer().
|
static |
Definition at line 131 of file mp3enc.c.
Referenced by mp3_queue_flush(), and mp3_write_header().
|
static |
Definition at line 278 of file mp3enc.c.
Referenced by mp3_write_audio_packet().
|
static |
Definition at line 304 of file mp3enc.c.
Referenced by mp3_queue_flush(), and mp3_write_packet().
|
static |
Definition at line 369 of file mp3enc.c.
Referenced by mp3_write_packet(), and mp3_write_trailer().
|
static |
Definition at line 387 of file mp3enc.c.
Referenced by mp3_write_trailer().
|
static |
|
static |
|
static |
|
static |
Definition at line 126 of file mp3enc.c.
Referenced by mp3_parse_info_tag(), mp3_write_audio_packet(), and mp3_write_xing().
|
static |
|
static |
AVOutputFormat ff_mp3_muxer |