[vlc-commits] test_input_stream: display size

Thomas Guillem git at videolan.org
Sun Jun 5 16:16:28 CEST 2016


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Sun Jun  5 15:53:15 2016 +0200| [56c1c41ae9e202c8975822e0f6991532b9322b44] | committer: Thomas Guillem

test_input_stream: display size

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=56c1c41ae9e202c8975822e0f6991532b9322b44
---

 test/src/input/stream.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/src/input/stream.c b/test/src/input/stream.c
index eb4549c..b1c781d 100644
--- a/test/src/input/stream.c
+++ b/test/src/input/stream.c
@@ -233,8 +233,8 @@ read_at( struct reader **pp_readers, unsigned int i_readers,
         const uint8_t *p_peek = NULL;
         struct reader *p_reader = pp_readers[i];
 
-        log( "%s: %s %zu @ %"PRIu64"\n", p_reader->psz_name,
-              p_buf ? "read" : "peek", i_read, i_offset );
+        log( "%s: %s %zu @ %"PRIu64" (size: %" PRIu64 ")\n", p_reader->psz_name,
+              p_buf ? "read" : "peek", i_read, i_offset, i_size );
         assert( p_reader->pf_seek( p_reader, i_offset ) != -1 );
 
         i_last_pos = p_reader->pf_tell( p_reader );



More information about the vlc-commits mailing list