diff mbox

[FFmpeg-devel,1/3] examples/avio_reading: return AVERROR_EOF at EOF.

Message ID 20171027184629.20772-1-george@nsup.org
State New
Headers show

Commit Message

Nicolas George Oct. 27, 2017, 6:46 p.m. UTC
Signed-off-by: Nicolas George <george@nsup.org>
---
 doc/examples/avio_reading.c | 2 ++
 1 file changed, 2 insertions(+)


Unchanged.

Comments

Jan Ekström Oct. 27, 2017, 6:59 p.m. UTC | #1
On Fri, Oct 27, 2017 at 9:46 PM, Nicolas George <george@nsup.org> wrote:
> Signed-off-by: Nicolas George <george@nsup.org>

LGTM


Jan
diff mbox

Patch

diff --git a/doc/examples/avio_reading.c b/doc/examples/avio_reading.c
index 02474e907a..7860fd5e2f 100644
--- a/doc/examples/avio_reading.c
+++ b/doc/examples/avio_reading.c
@@ -44,6 +44,8 @@  static int read_packet(void *opaque, uint8_t *buf, int buf_size)
     struct buffer_data *bd = (struct buffer_data *)opaque;
     buf_size = FFMIN(buf_size, bd->size);
 
+    if (!buf_size)
+        return AVERROR_EOF;
     printf("ptr:%p size:%zu\n", bd->ptr, bd->size);
 
     /* copy internal buffer data to buf */