diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-04-04 05:31:21 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-04 13:36:57 +0200 |
commit | f0c85d9b996695a8b5d34391caa9f2204de65a13 (patch) | |
tree | 1a5db296a049d642d65535e4447f3403d1cf2ef6 | |
parent | 511585ce7f7272e5069ef011d6be5f073d268901 (diff) | |
download | ffmpeg-f0c85d9b996695a8b5d34391caa9f2204de65a13.tar.gz |
lavf/assenc: style nits
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/assenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/assenc.c b/libavformat/assenc.c index 079991d14e..3fb9384930 100644 --- a/libavformat/assenc.c +++ b/libavformat/assenc.c @@ -31,7 +31,7 @@ typedef struct DialogueLine { struct DialogueLine *prev, *next; } DialogueLine; -typedef struct ASSContext{ +typedef struct ASSContext { const AVClass *class; int write_ts; // 0: ssa (timing in payload), 1: ass (matroska like) int expected_readorder; @@ -40,12 +40,12 @@ typedef struct ASSContext{ int cache_size; int ssa_mode; int ignore_readorder; -}ASSContext; +} ASSContext; static int write_header(AVFormatContext *s) { ASSContext *ass = s->priv_data; - AVCodecContext *avctx= s->streams[0]->codec; + AVCodecContext *avctx = s->streams[0]->codec; if (s->nb_streams != 1 || (avctx->codec_id != AV_CODEC_ID_SSA && avctx->codec_id != AV_CODEC_ID_ASS)) { |