[FFmpeg-devel] [PATCH] fix sdp(file) vs rtsp dep
Diego Biurrun
diego
Tue Oct 20 01:34:04 CEST 2009
On Mon, Oct 19, 2009 at 09:09:36PM +0200, Luca Abeni wrote:
> [...]
>
> I finally found some time to run some tests, and it seems to me that the
> situation is much simpler than expected: I might be wrong, but I think
> the SDP demuxer is just missing a dependency on rdt.o in
> libavformat/Makefile.
While this is correct, you are missing the point.
configure:
rtsp_demuxer_deps="sdp_demuxer"
libavformat/rtsp.c:
static int sdp_read_packet(AVFormatContext *s,
AVPacket *pkt)
{
return rtsp_read_packet(s, pkt);
}
So the SDP demuxer depends on RTSP functions, while configure claims
that the RTSP demuxer depends on the SDP demuxer. This is a circle.
I fixed all the build issues already. But the circle remains in
existence and needs to be resolved.
Diego
More information about the ffmpeg-devel
mailing list