解決vlc-android播放http視頻退出問題

來源:互聯網
上載者:User

之前用vlc-android播放http視頻,程式就自動結束了,嘗試用ndk-gdb調試,但是一調試,就報

 

/home/administrator/code/vlc-android/extras/package/android/vlc-android/obj/local/armeabi/gdb.setup:4: Error in sourced command file:
Remote communication error: Connection reset by peer.

到網上也沒找到解決方案,最後只用採用在c代碼中加入調試列印語句的方式,看究竟是哪裡報錯,最後跟蹤到是調用poll函數引起,

最後採在ffmpeg源碼中找到一個poll函數的源碼,修改後加入到vlc-android中

int poll(struct pollfd *fds, nfds_t numfds, int timeout)

{

    fd_set read_set;

    fd_set write_set;

    fd_set exception_set;

    nfds_t i;

    int n;

    int rc;

#if HAVE_WINSOCK2_H

    if (numfds >= FD_SETSIZE) {

        errno = EINVAL;

        return -1;

    }

#endif

    FD_ZERO(&read_set);

    FD_ZERO(&write_set);

    FD_ZERO(&exception_set);

    n = -1;

    for(i = 0; i < numfds; i++) {

        if (fds[i].fd < 0)

            continue;

#if !HAVE_WINSOCK2_H

        if (fds[i].fd >= FD_SETSIZE) {

            errno = EINVAL;

            return -1;

        }

#endif

        if (fds[i].events & POLLIN)  FD_SET(fds[i].fd, &read_set);

        if (fds[i].events & POLLOUT) FD_SET(fds[i].fd, &write_set);

        if (fds[i].events & POLLERR) FD_SET(fds[i].fd, &exception_set);

        if (fds[i].fd > n)

            n = fds[i].fd;

    };

    if (n == -1)

        /* Hey!? Nothing to poll, in fact!!! */

        return 0;

    if (timeout < 0)

        rc = select(n+1, &read_set, &write_set, &exception_set, NULL);

    else {

        struct timeval    tv;

        tv.tv_sec = timeout / 1000;

        tv.tv_usec = 1000 * (timeout % 1000);

        rc = select(n+1, &read_set, &write_set, &exception_set, &tv);

    };

    if (rc < 0)

        return rc;

    for(i = 0; i < numfds; i++) {

        fds[i].revents = 0;

        if (FD_ISSET(fds[i].fd, &read_set))      fds[i].revents |= POLLIN;

        if (FD_ISSET(fds[i].fd, &write_set))     fds[i].revents |= POLLOUT;

        if (FD_ISSET(fds[i].fd, &exception_set)) fds[i].revents |= POLLERR;

    };

    return rc;

}

測試播放網上的http視頻,視頻地址:http://forum.ea3w.com/coll_ea3w/attach/2008_10/12231788691.wmv

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.