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