[FFmpeg-cvslog] tests/bprint: Replace the number by macro for bprint init

Jun Zhao git at videolan.org
Sun Jun 17 05:02:02 EEST 2018


ffmpeg | branch: master | Jun Zhao <mypopydev at gmail.com> | Sun Jun 10 16:04:52 2018 +0800| [7f5b8f0883b877b59eedda95417952df3e9ae1d7] | committer: Jun Zhao

tests/bprint: Replace the number by macro for bprint init

Replace the number by macro for bprint init.

Signed-off-by: Jun Zhao <mypopydev at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7f5b8f0883b877b59eedda95417952df3e9ae1d7
---

 libavutil/tests/bprint.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/libavutil/tests/bprint.c b/libavutil/tests/bprint.c
index d7f381dd52..5a46f55d7a 100644
--- a/libavutil/tests/bprint.c
+++ b/libavutil/tests/bprint.c
@@ -47,13 +47,13 @@ int main(void)
     char buf[256];
     struct tm testtime = { .tm_year = 100, .tm_mon = 11, .tm_mday = 20 };
 
-    av_bprint_init(&b, 0, -1);
+    av_bprint_init(&b, 0, AV_BPRINT_SIZE_UNLIMITED);
     bprint_pascal(&b, 5);
     printf("Short text in unlimited buffer: %u/%u\n", (unsigned)strlen(b.str), b.len);
     printf("%s\n", b.str);
     av_bprint_finalize(&b, NULL);
 
-    av_bprint_init(&b, 0, -1);
+    av_bprint_init(&b, 0, AV_BPRINT_SIZE_UNLIMITED);
     bprint_pascal(&b, 25);
     printf("Long text in unlimited buffer: %u/%u\n", (unsigned)strlen(b.str), b.len);
     av_bprint_finalize(&b, NULL);
@@ -63,16 +63,16 @@ int main(void)
     printf("Long text in limited buffer: %u/%u\n", (unsigned)strlen(b.str), b.len);
     av_bprint_finalize(&b, NULL);
 
-    av_bprint_init(&b, 0, 1);
+    av_bprint_init(&b, 0, AV_BPRINT_SIZE_AUTOMATIC);
     bprint_pascal(&b, 5);
     printf("Short text in automatic buffer: %u/%u\n", (unsigned)strlen(b.str), b.len);
 
-    av_bprint_init(&b, 0, 1);
+    av_bprint_init(&b, 0, AV_BPRINT_SIZE_AUTOMATIC);
     bprint_pascal(&b, 25);
     printf("Long text in automatic buffer: %u/%u\n", (unsigned)strlen(b.str)/8*8, b.len);
     /* Note that the size of the automatic buffer is arch-dependent. */
 
-    av_bprint_init(&b, 0, 0);
+    av_bprint_init(&b, 0, AV_BPRINT_SIZE_COUNT_ONLY);
     bprint_pascal(&b, 25);
     printf("Long text count only buffer: %u/%u\n", (unsigned)strlen(b.str), b.len);
 
@@ -80,7 +80,7 @@ int main(void)
     bprint_pascal(&b, 25);
     printf("Long text count only buffer: %u/%u\n", (unsigned)strlen(buf), b.len);
 
-    av_bprint_init(&b, 0, -1);
+    av_bprint_init(&b, 0, AV_BPRINT_SIZE_UNLIMITED);
     av_bprint_strftime(&b, "%Y-%m-%d", &testtime);
     printf("strftime full: %u/%u \"%s\"\n", (unsigned)strlen(buf), b.len, b.str);
     av_bprint_finalize(&b, NULL);



More information about the ffmpeg-cvslog mailing list