diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-21 08:01:51 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-21 08:01:51 +0100 |
commit | 030db0c1dd807afca82813f07f5297cd192ebaa1 (patch) | |
tree | 05f732937934e6629dd67fd30b7264abf062ab7a | |
parent | 57d7e21c34112ee7e921038cfae1ab67376ca9cc (diff) | |
download | ffmpeg-030db0c1dd807afca82813f07f5297cd192ebaa1.tar.gz |
lavf/hls: whitespace cosmetics after 23db5418.
-rw-r--r-- | libavformat/hls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c index e29ab02173..f515dfb7f1 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -504,7 +504,7 @@ static int hls_read_header(AVFormatContext *s) struct variant *v = c->variants[i]; AVInputFormat *in_fmt = NULL; char bitrate_str[20]; - AVProgram * program = NULL; + AVProgram *program = NULL; if (v->n_segments == 0) continue; @@ -553,7 +553,7 @@ static int hls_read_header(AVFormatContext *s) /* Create new AVprogram for variant i */ program = av_new_program(s, i); - if ( !program ) + if (!program) goto fail; av_dict_set(&program->metadata, "variant_bitrate", bitrate_str, 0); |