#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 |
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 | mp3_write_trailer (struct AVFormatContext *s) |
typedef struct MP3Context MP3Context |
static int id3v1_create_tag | ( | AVFormatContext * | s, | |
uint8_t * | buf | |||
) | [static] |
Definition at line 44 of file mp3enc.c.
Referenced by mp3_write_trailer().
static int id3v1_set_string | ( | AVFormatContext * | s, | |
const char * | key, | |||
uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
Definition at line 35 of file mp3enc.c.
Referenced by id3v1_create_tag().
static int mp3_write_trailer | ( | struct AVFormatContext * | s | ) | [static] |