OSDN Git Service

rtmp: Return proper error codes in handle_chunk_size
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Wed, 25 Jul 2012 18:51:08 +0000 (20:51 +0200)
committerMartin Storsjö <martin@martin.st>
Wed, 25 Jul 2012 20:57:00 +0000 (23:57 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtmpproto.c

index 31d1f69..5aa6a54 100644 (file)
@@ -889,7 +889,7 @@ static int handle_chunk_size(URLContext *s, RTMPPacket *pkt)
         av_log(s, AV_LOG_ERROR,
                "Chunk size change packet is not 4 bytes long (%d)\n",
                pkt->data_size);
-        return -1;
+        return AVERROR_INVALIDDATA;
     }
 
     if (!rt->is_input) {
@@ -901,7 +901,7 @@ static int handle_chunk_size(URLContext *s, RTMPPacket *pkt)
     rt->chunk_size = AV_RB32(pkt->data);
     if (rt->chunk_size <= 0) {
         av_log(s, AV_LOG_ERROR, "Incorrect chunk size %d\n", rt->chunk_size);
-        return -1;
+        return AVERROR_INVALIDDATA;
     }
     av_log(s, AV_LOG_DEBUG, "New chunk size = %d\n", rt->chunk_size);