Searched refs:id3v2_version (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Did3v2enc.c100 int ff_id3v2_write(struct AVFormatContext *s, int id3v2_version, argument
106 int totlen = 0, enc = id3v2_version == 3 ? ID3v2_ENCODING_UTF16BOM :
110 avio_wb32(s->pb, MKBETAG(magic[0], magic[1], magic[2], id3v2_version));
119 if (id3v2_version == 4)
129 if ((ret = id3v2_check_write_tag(s, t, id3v2_version == 3 ?
H A Did3v2.h91 * @param id3v2_version Subversion of ID3v2; supported values are 3 and 4
95 int ff_id3v2_write(struct AVFormatContext *s, int id3v2_version, const char *magic);
H A Dmp3enc.c78 int id3v2_version; member in struct:MP3Context
121 { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
122 offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
190 ret = ff_id3v2_write(s, mp3->id3v2_version, ID3v2_DEFAULT_MAGIC);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Did3v2.h123 void ff_id3v2_start(ID3v2EncContext *id3, AVIOContext *pb, int id3v2_version,
143 * @param id3v2_version Subversion of ID3v2; supported values are 3 and 4
147 int ff_id3v2_write_simple(struct AVFormatContext *s, int id3v2_version, const char *magic);
H A Dmp3enc.c86 int id3v2_version; member in struct:MP3Context
399 { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
400 offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.i64 = 4}, 0, 4, AV_OPT_FLAG_ENCODING_PARAM},
473 if (mp3->id3v2_version &&
474 mp3->id3v2_version != 3 &&
475 mp3->id3v2_version != 4) {
477 "3, 4 or 0 (disabled) are allowed.\n", mp3->id3v2_version);
504 if (mp3->pics_to_write && !mp3->id3v2_version) {
510 if (mp3->id3v2_version) {
511 ff_id3v2_start(&mp3->id3, s->pb, mp3->id3v2_version, ID3v2_DEFAULT_MAGI
[all...]
H A Did3v2enc.c152 void ff_id3v2_start(ID3v2EncContext *id3, AVIOContext *pb, int id3v2_version, argument
155 id3->version = id3v2_version;
157 avio_wb32(pb, MKBETAG(magic[0], magic[1], magic[2], id3v2_version));
349 int ff_id3v2_write_simple(struct AVFormatContext *s, int id3v2_version, argument
355 ff_id3v2_start(&id3, s->pb, id3v2_version, magic);
H A Daiffenc.c41 int id3v2_version; member in struct:__anon3446
62 ff_id3v2_start(&id3v2, pb, aiff->id3v2_version, ID3v2_DEFAULT_MAGIC);
309 { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
310 OFFSET(id3v2_version), AV_OPT_TYPE_INT, {.i64 = 4}, 3, 4, ENC },

Completed in 225 milliseconds