# HG changeset patch # User ramiro # Date 1271377211 0 # Node ID 780410aa35b79aba9983e6ebd39a13d18b08adfe # Parent 1c93ef22cea6e5d3494310d1684e1e3cc710582f AVERROR(FF_NETERROR(x)) -> FF_NETERROR(x) FF_NETERROR is implicitly an AVERROR. diff -r 1c93ef22cea6 -r 780410aa35b7 rtsp.c --- a/rtsp.c Thu Apr 15 18:27:27 2010 +0000 +++ b/rtsp.c Fri Apr 16 00:20:11 2010 +0000 @@ -1583,7 +1583,7 @@ goto fail; lower_transport_mask &= ~(1 << lower_transport); if (lower_transport_mask == 0 && err == 1) { - err = AVERROR(FF_NETERROR(EPROTONOSUPPORT)); + err = FF_NETERROR(EPROTONOSUPPORT); goto fail; } } while (err);