summaryrefslogtreecommitdiffstats
path: root/libavcodec/libvpxenc.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2018-11-19 11:36:36 -0800
committerJames Zern <jzern@google.com>2018-11-19 11:38:34 -0800
commite1f895838d5061572a1d79da6e5888673a2ea241 (patch)
tree04cc7adb341af17ece295e4688c9242273a51b6c /libavcodec/libvpxenc.c
parent95107af314620fc79d9efaa708f3d03bb27e884d (diff)
downloadffmpeg-streaming-e1f895838d5061572a1d79da6e5888673a2ea241.zip
ffmpeg-streaming-e1f895838d5061572a1d79da6e5888673a2ea241.tar.gz
libvpxenc,cosmetics: fix { placement
Signed-off-by: James Zern <jzern@google.com>
Diffstat (limited to 'libavcodec/libvpxenc.c')
-rw-r--r--libavcodec/libvpxenc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index f1cfb7e..39af586 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);
}
OpenPOWER on IntegriCloud