Browse Source

Original Commit: r21 | ods15 | 2006-09-22 13:40:31 +0300 (Fri, 22 Sep 2006) | 2 lines

placeholders for reisudes, mappings and modes

Originally committed as revision 6432 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Oded Shimon 19 years ago
parent
commit
e185750ab7
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      libavcodec/vorbis_enc.c

+ 9
- 0
libavcodec/vorbis_enc.c View File

@@ -247,6 +247,15 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon
fc->list[0].x = 0;
fc->list[1].x = 1 << fc->rangebits;
for (i = 2; i < fc->values; i++) fc->list[i].x = i * 5;

venc->nresidues = 1;
venc->residues = av_malloc(sizeof(residue_t) * venc->nresidues);

venc->nmappings = 1;
venc->mappings = av_malloc(sizeof(mapping_t) * venc->nmappings);

venc->nmodes = 1;
venc->modes = av_malloc(sizeof(vorbis_mode_t) * venc->nmodes);
}

static inline int ilog(unsigned int a) {


Loading…
Cancel
Save