现在的位置: 首页 > 综合 > 正文

vlc android 代码编译后无法启动

2012年11月23日 ⁄ 综合 ⁄ 共 561字 ⁄ 字号 评论关闭

    编译完成后,无法启动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"};

抱歉!评论已关闭.