diff rtsp.c @ 5955:780410aa35b7 libavformat

AVERROR(FF_NETERROR(x)) -> FF_NETERROR(x) FF_NETERROR is implicitly an AVERROR.
author ramiro
date Fri, 16 Apr 2010 00:20:11 +0000
parents 1c93ef22cea6
children 9a86b49201bb
line wrap: on
line diff
--- 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);