changeset 12132:189c04335897 libavcodec

use avccontext->frame_size where appropriate
author skal
date Sun, 11 Jul 2010 06:40:05 +0000
parents 2d51a2375ddf
children 24649290a14f
files libvorbis.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libvorbis.c	Sun Jul 11 05:06:08 2010 +0000
+++ b/libvorbis.c	Sun Jul 11 06:40:05 2010 +0000
@@ -145,7 +145,7 @@
     int l;
 
     if(data) {
-        int samples = OGGVORBIS_FRAME_SIZE;
+        const int samples = avccontext->frame_size;
         float **buffer ;
         int c, channels = context->vi.channels;