diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 05:55:49 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 05:55:49 +0000 |
commit | 491d4dfd6c5383078d96818f76c3e6f18d92caea (patch) | |
tree | 69f64251a0aa59d463a87b79bb88453442d29302 /libavcodec/vorbis_enc.c | |
parent | b9db113d6d4c0de2d3fab88b1ff638afb9c250f4 (diff) | |
download | ffmpeg-491d4dfd6c5383078d96818f76c3e6f18d92caea.tar.gz |
Original Commit: r20 | ods15 | 2006-09-22 13:12:48 +0300 (Fri, 22 Sep 2006) | 2 lines
cosmetic
Originally committed as revision 6431 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r-- | libavcodec/vorbis_enc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index 21a93a315d..e8f2164ff6 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -218,8 +218,9 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon venc->nfloors = 1; venc->floors = av_malloc(sizeof(floor_t) * venc->nfloors); - fc = &venc->floors[0]; + // just 1 floor + fc = &venc->floors[0]; fc->partitions = 1; fc->partition_to_class = av_malloc(sizeof(int) * fc->partitions); for (i = 0; i < fc->partitions; i++) fc->partition_to_class = 0; |