[FFmpeg-devel] [PATCH] Change inter-protocol dependencies from _deps to _select

Martin Storsjö martin
Fri May 14 20:52:01 CEST 2010


On Fri, 14 May 2010, M?ns Rullg?rd wrote:

> Martin Storsj? <martin at martin.st> writes:
> 
> > Hi,
> >
> > With this patch, one can do e.g. --disable-protocols --enable-protocol=rtp 
> > and get what one wants, just like one can do with http at the moment.
> >
> > // Martin
> >
> > From 560077dd0aa2ba9105c6bf591399c25a107b9553 Mon Sep 17 00:00:00 2001
> > From: Martin Storsjo <martin at martin.st>
> > Date: Fri, 14 May 2010 20:32:55 +0200
> > Subject: [PATCH] Change inter-protocol dependencies from _deps to _select
> >
> > This follows the example set by the http protocol, the tcp and udp protocols
> > should be enabled if rtp or rtmp are explicitly requested.
> > ---
> >  configure |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/configure b/configure
> > index 2bd55d2..f8a1316 100755
> > --- a/configure
> > +++ b/configure
> > @@ -1407,8 +1407,8 @@ x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
> >  gopher_protocol_deps="network"
> >  http_protocol_deps="network"
> >  http_protocol_select="tcp_protocol"
> > -rtmp_protocol_deps="tcp_protocol"
> > -rtp_protocol_deps="udp_protocol"
> > +rtmp_protocol_select="tcp_protocol"
> > +rtp_protocol_select="udp_protocol"
> >  tcp_protocol_deps="network"
> >  udp_protocol_deps="network"
> 
> OK

Applied

// Martin



More information about the ffmpeg-devel mailing list