Commit b381a823 authored by Kostya Shishkov's avatar Kostya Shishkov

10l trocadero: now return value of ff_rtmp_packet_read() has different meaning

Originally committed as revision 21534 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0b6b10d9
......@@ -663,7 +663,7 @@ static int get_packet(URLContext *s, int for_header)
RTMPPacket rpkt;
if ((ret = ff_rtmp_packet_read(rt->stream, &rpkt,
rt->chunk_size, rt->prev_pkt[0])) != 0) {
if (ret > 0) {
if (ret == 0) {
return AVERROR(EAGAIN);
} else {
return AVERROR(EIO);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment