OSDN Git Service

Ministry of English Composition treatment: s/Alloced/Allocated
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Mon, 5 Jan 2009 18:44:32 +0000 (18:44 +0000)
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Mon, 5 Jan 2009 18:44:32 +0000 (18:44 +0000)
Originally committed as revision 16439 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vdpau_render.h
libavcodec/vdpauvideo.c

index 776b6da..2daeb13 100644 (file)
@@ -74,7 +74,7 @@ struct vdpau_render_state {
     } info;
 
     /** Describe size/location of the compressed video data. */
-    int bitstreamBuffersAlloced;
+    int bitstreamBuffersAllocated;
     int bitstreamBuffersUsed;
     VdpBitstreamBuffer *bitstreamBuffers;
 };
index 0ac05eb..ab4a048 100644 (file)
@@ -119,7 +119,7 @@ void ff_VDPAU_h264_add_data_chunk(H264Context *h, const uint8_t *buf, int buf_si
 
     render->bitstreamBuffers= av_fast_realloc(
         render->bitstreamBuffers,
-        &render->bitstreamBuffersAlloced,
+        &render->bitstreamBuffersAllocated,
         sizeof(*render->bitstreamBuffers)*(render->bitstreamBuffersUsed + 1)
     );