diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-15 22:52:22 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-15 22:52:22 +0000 |
commit | 227a388d0748aa0ea3ea11815a7375babfbea417 (patch) | |
tree | 06942301a8fee292a83309e2d21a3eeab81a4a73 | |
parent | d3e412d0cc1e4b19b620b5583bb2bd8558e28997 (diff) | |
download | ffmpeg-227a388d0748aa0ea3ea11815a7375babfbea417.tar.gz |
cosmetics: reindent
Originally committed as revision 10753 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/electronicarts.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c index 5ed02b63fb..8f2f6a29e6 100644 --- a/libavformat/electronicarts.c +++ b/libavformat/electronicarts.c @@ -181,15 +181,15 @@ static int ea_read_header(AVFormatContext *s, return AVERROR(EIO); if (ea->time_base.num && ea->time_base.den) { - /* initialize the video decoder stream */ - st = av_new_stream(s, 0); - if (!st) - return AVERROR(ENOMEM); - ea->video_stream_index = st->index; - st->codec->codec_type = CODEC_TYPE_VIDEO; - st->codec->codec_id = CODEC_ID_VP6; - st->codec->codec_tag = 0; /* no fourcc */ - st->codec->time_base = ea->time_base; + /* initialize the video decoder stream */ + st = av_new_stream(s, 0); + if (!st) + return AVERROR(ENOMEM); + ea->video_stream_index = st->index; + st->codec->codec_type = CODEC_TYPE_VIDEO; + st->codec->codec_id = CODEC_ID_VP6; + st->codec->codec_tag = 0; /* no fourcc */ + st->codec->time_base = ea->time_base; } /* initialize the audio decoder stream */ |