INNER CODE UNIT · C++

jlength

OxygenCobalt/Auxio · musikr/src/main/cpp/JInputStream.cpp:144

    jlong jlength = env->CallLongMethod(jInputStream, jInputStreamLengthMethod);
    if (jlength == INT64_MIN) {
        throw std::runtime_error("Failed to get length, see logs");
    }
    return static_cast<TagLib::offset_t>(jlength);
}

void JInputStream::truncate(TagLib::offset_t length) {
    throw std::runtime_error("Not implemented");
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…