[MPlayer-cvslog] r36453 - trunk/libmpdemux/demux_lavf.c
Reimar Döffinger
Reimar.Doeffinger at gmx.de
Sat Sep 21 18:53:52 CEST 2013
On Sat, Sep 21, 2013 at 06:33:04PM +0200, Ingo Brückl wrote:
> > Author: reimar
> > Date: Sat Sep 21 17:55:28 2013
> > New Revision: 36453
>
> > Log:
> > Add support for -rtsp-stream-over-tcp and -rtsp-stream-over-http for FFmpeg.
>
> > Modified:
> > trunk/libmpdemux/demux_lavf.c
>
> > Modified: trunk/libmpdemux/demux_lavf.c
> > ==============================================================================
> > +++ trunk/libmpdemux/demux_lavf.c Sat Sep 21 17:55:28 2013
> > (r36453)
> > @@ -535,6 +535,9 @@ static demuxer_t* demux_open_lavf(demuxe
> > mp_msg(MSGT_HEADER,MSGL_ERR, "demux_lavf, couldn't set option analyzeduration to %u\n", opt_analyzeduration);
> > }
> >
> > + if (rtsp_transport_http || rtsp_transport_tcp)
> > + av_dict_set(&opts, "rtsp_transport", rtsp_transport_http ? "http" : "tcp", 0);
> > +
>
> Without libnemesi:
>
> demux_lavf.c:(.text+0x16ec): undefined reference to `rtsp_transport_http'
> demux_lavf.c:(.text+0x16fe): undefined reference to `rtsp_transport_tcp'
Actually only if both live555 and nemesi are disabled.
Still, good point, and fixed.
More information about the MPlayer-cvslog
mailing list