Lines Matching refs:id3v2_version
101 int id3v2_version;
504 { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
505 offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.i64 = 4}, 0, 4, AV_OPT_FLAG_ENCODING_PARAM},
570 if (mp3->id3v2_version &&
571 mp3->id3v2_version != 3 &&
572 mp3->id3v2_version != 4) {
574 "3, 4 or 0 (disabled) are allowed.\n", mp3->id3v2_version);
601 if (mp3->pics_to_write && !mp3->id3v2_version) {
615 if (mp3->id3v2_version) {
616 ff_id3v2_start(&mp3->id3, s->pb, mp3->id3v2_version, ID3v2_DEFAULT_MAGIC);
623 if (mp3->id3v2_version)