Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-14 22:38:55 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-15 15:04:28 +0300
commit3e68b3ba7b015cf2154ad2023781eedd47f0f4bb (patch)
treee8bb2171e7b2131883024b901941343998b84c07 /ffplay.c
parent75b9ed04b977bfd467816f7e60c6511ef89b8a2b (diff)
avio: deprecate url_ferror
AVIOContext.error should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 60194372d9..fe0448744d 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2570,7 +2570,7 @@ static int decode_thread(void *arg)
if (ret < 0) {
if (ret == AVERROR_EOF || ic->pb->eof_reached)
eof=1;
- if (url_ferror(ic->pb))
+ if (ic->pb->error)
break;
SDL_Delay(100); /* wait for user event */
continue;