# HG changeset patch # User ods15 # Date 1159768565 0 # Node ID d4c01d85fb469d13ba01b37dc83eea90c6a805e4 # Parent 3d159e4cde5aac36b1ea89e376f42365ce7bf8b9 Original Commit: r27 | ods15 | 2006-09-22 14:19:51 +0300 (Fri, 22 Sep 2006) | 2 lines better frame_size, depending on blocksize diff -r 3d159e4cde5a -r d4c01d85fb46 vorbis_enc.c --- a/vorbis_enc.c Mon Oct 02 05:56:03 2006 +0000 +++ b/vorbis_enc.c Mon Oct 02 05:56:05 2006 +0000 @@ -534,7 +534,7 @@ avccontext->extradata_size = put_main_header(venc, (uint8_t**)&avccontext->extradata); - avccontext->frame_size = VORBIS_FRAME_SIZE; + avccontext->frame_size = 1 << venc->blocksize[0]; avccontext->coded_frame = avcodec_alloc_frame(); avccontext->coded_frame->key_frame = 1; @@ -548,7 +548,7 @@ #if 0 venc_context_t * venc = avccontext->priv_data; signed short * audio = data; - int samples = data ? VORBIS_FRAME_SIZE : 0; + int samples = data ? avccontext->frame_size : 0; avccontext->coded_frame->pts = av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base); memcpy(packets, compressed_frame, l);