vlc android 代码编译后无法启动

    编译完成后,无法启动vlc

    const char *argv[] = {
        "-I", "dummy",
        "--no-osd",
        "--no-video-title-show",
        "--no-stats",
        "--no-plugins-cache",
        "--no-drop-late-frames",
        "--avcodec-fast",
        "--avcodec-threads=0",
        "--subsdec-encoding", subsencodingstr,
        enable_time_stretch ? "--audio-time-stretch" : "--no-audio-time-stretch",
        use_opensles ? "--aout=opensles" : "--aout=android_audiotrack",
        yv12enabled ? "--androidsurface-chroma=YV12" : "--androidsurface-chroma=RV32",

    };

换成

   const char *argv[] = {"-I", "dummy", "-vvv", "--no-plugins-cache","--no-drop-late-frames"};

你可能感兴趣的:(vlc android 代码编译后无法启动)