[FFmpeg-cvslog] libvpxenc,cosmetics: fix { placement

James Zern git at videolan.org
Mon Nov 19 21:39:03 EET 2018


ffmpeg | branch: master | James Zern <jzern at google.com> | Mon Nov 19 11:36:36 2018 -0800| [e1f895838d5061572a1d79da6e5888673a2ea241] | committer: James Zern

libvpxenc,cosmetics: fix { placement

Signed-off-by: James Zern <jzern at google.com>

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

 libavcodec/libvpxenc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index f1cfb7ee6b..39af586790 100644
--- a/libavcodec/libvpxenc.c
+++ b/libavcodec/libvpxenc.c
@@ -354,8 +354,7 @@ static void vp8_ts_parse_int_array(int *dest, char *value, size_t value_len, int
     char *saveptr = NULL;
     char *token = av_strtok(value, ",", &saveptr);
 
-    while (token && dest_idx < max_entries)
-    {
+    while (token && dest_idx < max_entries) {
         dest[dest_idx++] = strtoul(token, NULL, 10);
         token = av_strtok(NULL, ",", &saveptr);
     }



More information about the ffmpeg-cvslog mailing list