[FFmpeg-cvslog] commit: Revert aviobuf: Retry if the read/write function returns AVERROR( EAGAIN) ( Martin Storsjö )
git at videolan.org
git
Thu Jan 13 10:33:52 CET 2011
ffmpeg | branch: master | Martin Storsj? <martin at martin.st> | Thu Jan 13 06:22:43 2011 +0000| [c66f53cf8b3fd9fca0c0e30140eaeb9c16e58da2] | committer: Martin Storsj?
Revert aviobuf: Retry if the read/write function returns AVERROR(EAGAIN)
This reverts SVN commit 26318, which broke MS-RTSP playback.
Originally committed as revision 26326 to svn://svn.ffmpeg.org/ffmpeg/trunk
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c66f53cf8b3fd9fca0c0e30140eaeb9c16e58da2
---
libavformat/aviobuf.c | 28 +++-------------------------
1 files changed, 3 insertions(+), 25 deletions(-)
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 5aff31c..df76507 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -19,9 +19,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-/* needed for usleep() */
-#define _XOPEN_SOURCE 600
-#include <unistd.h>
#include "libavutil/crc.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
@@ -91,29 +88,11 @@ ByteIOContext *av_alloc_put_byte(
return s;
}
-static inline int retry_transfer_wrapper(void *opaque, unsigned char *buf,
- int size,
- int (*transfer_func)(void *, unsigned char *, int)) {
- int fast_retries = 5;
- while (1) {
- int ret = transfer_func(opaque, buf, size);
- if (ret == AVERROR(EAGAIN)) {
- if (fast_retries)
- fast_retries--;
- else
- usleep(1000);
- } else
- return ret;
- }
-}
-
static void flush_buffer(ByteIOContext *s)
{
if (s->buf_ptr > s->buffer) {
if (s->write_packet && !s->error){
- int ret= retry_transfer_wrapper(s->opaque, s->buffer,
- s->buf_ptr - s->buffer,
- s->write_packet);
+ int ret= s->write_packet(s->opaque, s->buffer, s->buf_ptr - s->buffer);
if(ret < 0){
s->error = ret;
}
@@ -382,7 +361,7 @@ static void fill_buffer(ByteIOContext *s)
}
if(s->read_packet)
- len = retry_transfer_wrapper(s->opaque, dst, len, s->read_packet);
+ len = s->read_packet(s->opaque, dst, len);
else
len = 0;
if (len <= 0) {
@@ -453,8 +432,7 @@ int get_buffer(ByteIOContext *s, unsigned char *buf, int size)
if (len == 0) {
if(size > s->buffer_size && !s->update_checksum){
if(s->read_packet)
- len = retry_transfer_wrapper(s->opaque, buf, size,
- s->read_packet);
+ len = s->read_packet(s->opaque, buf, size);
if (len <= 0) {
/* do not modify buffer if EOF reached so that a seek back can
be done without rereading data */
More information about the ffmpeg-cvslog
mailing list