Mercurial > libavformat.hg
changeset 5985:35c3858d457f libavformat
Reindent after rr22977.
Patch by Sebastian Vater <cdgs.basty googlemail com>.
author | rbultje |
---|---|
date | Tue, 27 Apr 2010 14:04:11 +0000 |
parents | 55c714a8fb00 |
children | bbac6af4238c |
files | iff.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/iff.c Tue Apr 27 14:03:47 2010 +0000 +++ b/iff.c Tue Apr 27 14:04:11 2010 +0000 @@ -114,7 +114,7 @@ st = av_new_stream(s, 0); if (!st) - return AVERROR(ENOMEM); + return AVERROR(ENOMEM); st->codec->channels = 1; url_fskip(pb, 8); @@ -136,8 +136,8 @@ url_fskip(pb, 12); st->codec->sample_rate = get_be16(pb); if (data_size >= 16) { - url_fskip(pb, 1); - compression = get_byte(pb); + url_fskip(pb, 1); + compression = get_byte(pb); } break; @@ -170,13 +170,13 @@ url_fskip(pb, 4); // x, y offset st->codec->bits_per_coded_sample = get_byte(pb); if (data_size >= 11) { - url_fskip(pb, 1); // masking - compression = get_byte(pb); + url_fskip(pb, 1); // masking + compression = get_byte(pb); } if (data_size >= 16) { - url_fskip(pb, 3); // paddding, transparent - st->sample_aspect_ratio.num = get_byte(pb); - st->sample_aspect_ratio.den = get_byte(pb); + url_fskip(pb, 3); // paddding, transparent + st->sample_aspect_ratio.num = get_byte(pb); + st->sample_aspect_ratio.den = get_byte(pb); } break;