Mercurial > libavformat.hg
changeset 4297:85aa6639649a libavformat
vertical align
author | michael |
---|---|
date | Tue, 27 Jan 2009 21:09:22 +0000 |
parents | 42a9dba93e69 |
children | dad1519b0829 |
files | 4xm.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/4xm.c Tue Jan 27 21:06:19 2009 +0000 +++ b/4xm.c Tue Jan 27 21:09:22 2009 +0000 @@ -139,7 +139,7 @@ av_free(header); return AVERROR_INVALIDDATA; } - fourxm->width = AV_RL32(&header[i + 36]); + fourxm->width = AV_RL32(&header[i + 36]); fourxm->height = AV_RL32(&header[i + 40]); /* allocate a new AVStream */ @@ -157,7 +157,7 @@ st->codec->extradata_size = 4; st->codec->extradata = av_malloc(4); AV_WL32(st->codec->extradata, AV_RL32(&header[i + 16])); - st->codec->width = fourxm->width; + st->codec->width = fourxm->width; st->codec->height = fourxm->height; i += 8 + size; @@ -181,10 +181,10 @@ return AVERROR(ENOMEM); } } - fourxm->tracks[current_track].adpcm = AV_RL32(&header[i + 12]); - fourxm->tracks[current_track].channels = AV_RL32(&header[i + 36]); + fourxm->tracks[current_track].adpcm = AV_RL32(&header[i + 12]); + fourxm->tracks[current_track].channels = AV_RL32(&header[i + 36]); fourxm->tracks[current_track].sample_rate = AV_RL32(&header[i + 40]); - fourxm->tracks[current_track].bits = AV_RL32(&header[i + 44]); + fourxm->tracks[current_track].bits = AV_RL32(&header[i + 44]); i += 8 + size; /* allocate a new AVStream */ @@ -200,10 +200,10 @@ st->codec->codec_type = CODEC_TYPE_AUDIO; st->codec->codec_tag = 0; - st->codec->channels = fourxm->tracks[current_track].channels; - st->codec->sample_rate = fourxm->tracks[current_track].sample_rate; + st->codec->channels = fourxm->tracks[current_track].channels; + st->codec->sample_rate = fourxm->tracks[current_track].sample_rate; st->codec->bits_per_coded_sample = fourxm->tracks[current_track].bits; - st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * + st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * st->codec->bits_per_coded_sample; st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample; if (fourxm->tracks[current_track].adpcm)