Searched refs:subsong (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | libopenmpt.c | 47 int subsong; member 56 …{ "subsong", "set subsong", OFFSET(subsong), AV_OPT_TYPE_INT, { .i64 = -… 122 if (openmpt->subsong >= openmpt_module_get_num_subsongs(openmpt->module)) { in read_header_openmpt() 123 av_log(s, AV_LOG_ERROR, "Invalid subsong index: %d\n", openmpt->subsong); in read_header_openmpt() 127 if (openmpt->subsong != -2) { in read_header_openmpt() 128 if (openmpt->subsong >= 0) { in read_header_openmpt() 129 av_dict_set_int(&s->metadata, "track", openmpt->subsong + 1, 0); in read_header_openmpt() 131 ret = openmpt_module_select_subsong(openmpt->module, openmpt->subsong); in read_header_openmpt() 133 av_log(s, AV_LOG_ERROR, "Could not select requested subsong: %d", openmpt->subsong); in read_header_openmpt()
|
/third_party/ffmpeg/doc/ |
D | demuxers.texi | 641 Some files have multiple subsongs (tracks) this can be set with the @option{subsong} 647 @item subsong 648 Set the subsong index. This can be either 'all', 'auto', or the index of the 649 subsong. Subsong indexes start at 0. The default is 'auto'.
|