diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2012-07-25 20:51:09 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-07-25 23:57:00 +0300 |
commit | 088a82bb33d64b95e71a9a7f06ca19cc61ffa8d4 (patch) | |
tree | 6fd86b146207b6a1eb4342621f2c73e20dade312 /libavformat/rtmpproto.c | |
parent | e7ea6883bfaabaad20ac3d369c8293e693e3c22b (diff) | |
download | ffmpeg-088a82bb33d64b95e71a9a7f06ca19cc61ffa8d4.tar.gz |
rtmp: Return proper error code in handle_client_bw
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtmpproto.c')
-rw-r--r-- | libavformat/rtmpproto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 5aa6a540c5..be61074b16 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; |