[FFmpeg-cvslog] rtmp: Return proper error code in handle_client_bw

Samuel Pitoiset git at videolan.org
Thu Jul 26 21:55:14 CEST 2012


ffmpeg | branch: master | Samuel Pitoiset <samuel.pitoiset at gmail.com> | Wed Jul 25 20:51:09 2012 +0200| [088a82bb33d64b95e71a9a7f06ca19cc61ffa8d4] | committer: Martin Storsjö

rtmp: Return proper error code in handle_client_bw

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=088a82bb33d64b95e71a9a7f06ca19cc61ffa8d4
---

 libavformat/rtmpproto.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index 5aa6a54..be61074 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -930,7 +930,7 @@ static int handle_client_bw(URLContext *s, RTMPPacket *pkt)
         av_log(s, AV_LOG_ERROR,
                "Client bandwidth report packet is less than 4 bytes long (%d)\n",
                pkt->data_size);
-        return -1;
+        return AVERROR_INVALIDDATA;
     }
     av_log(s, AV_LOG_DEBUG, "Client bandwidth = %d\n", AV_RB32(pkt->data));
     rt->client_report_size = AV_RB32(pkt->data) >> 1;



More information about the ffmpeg-cvslog mailing list