Skip to content
Snippets Groups Projects
ffserver.c 125 KiB
Newer Older
  • Learn to ignore specific revisions
  •     if (build_feed_streams() < 0) {
            http_log("Could not setup feed streams\n");
            goto bail;
        }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        /* signal init */
        signal(SIGPIPE, SIG_IGN);
    
    
            http_log("Could not start server\n");
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        }
    
    
        ret=EXIT_SUCCESS;
    
    bail:
        av_freep (&config.filename);
        avformat_network_deinit();
        return ret;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    }