diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-03-31 11:48:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-03-31 11:48:28 +0000 |
commit | 30a1380a0477a1ef0ef9cfc857a706ad157f15b2 (patch) | |
tree | 69e4be8c5891f8a0c1892ffa00c8713fd3b9c052 /libavformat/tta.c | |
parent | d495fdc3d3957881e0ac774913d9ef44b3330108 (diff) | |
download | ffmpeg-30a1380a0477a1ef0ef9cfc857a706ad157f15b2.tar.gz |
cosmetics: Fix indentation.
Originally committed as revision 8565 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/tta.c')
-rw-r--r-- | libavformat/tta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tta.c b/libavformat/tta.c index 663cd1b6e9..a3709437ee 100644 --- a/libavformat/tta.c +++ b/libavformat/tta.c @@ -75,7 +75,7 @@ static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap) return AVERROR_NOMEM; for (i = 0; i < c->totalframes; i++) - c->seektable[i] = get_le32(&s->pb); + c->seektable[i] = get_le32(&s->pb); url_fskip(&s->pb, 4); // seektable crc st = av_new_stream(s, 0); |