#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"
Go to the source code of this file.
Data Structures | |
struct | MP3Context |
Defines | |
#define | VBR_NUM_BAGS 400 |
#define | VBR_TOC_SIZE 100 |
Typedefs | |
typedef struct MP3Context | MP3Context |
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 | mp2_write_trailer (struct AVFormatContext *s) |
typedef struct MP3Context MP3Context |
static int id3v1_create_tag | ( | AVFormatContext * | s, |
uint8_t * | buf | ||
) | [static] |
Definition at line 48 of file mp3enc.c.
Referenced by mp2_write_trailer().
static int id3v1_set_string | ( | AVFormatContext * | s, |
const char * | key, | ||
uint8_t * | buf, | ||
int | buf_size | ||
) | [static] |
Definition at line 39 of file mp3enc.c.
Referenced by id3v1_create_tag().
static int mp2_write_trailer | ( | struct AVFormatContext * | s | ) | [static] |