This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
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
tags/v0.6
Kostya Shishkov
15 years ago
parent
0b6b10d9da
commit
b381a823cd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/rtmpproto.c
+ 1
- 1
libavformat/rtmpproto.c
View File
@@ -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);
Write
Preview
Loading…
Cancel
Save