Ministry of English Composition treatment: s/Alloced/Allocated

Originally committed as revision 16439 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Carl Eugen Hoyos 2009-01-05 18:44:32 +00:00
parent 6d8b21f3e8
commit 5d9c0615be
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ struct vdpau_render_state {
} info; } info;
/** Describe size/location of the compressed video data. */ /** Describe size/location of the compressed video data. */
int bitstreamBuffersAlloced; int bitstreamBuffersAllocated;
int bitstreamBuffersUsed; int bitstreamBuffersUsed;
VdpBitstreamBuffer *bitstreamBuffers; VdpBitstreamBuffer *bitstreamBuffers;
}; };

View 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= av_fast_realloc(
render->bitstreamBuffers, render->bitstreamBuffers,
&render->bitstreamBuffersAlloced, &render->bitstreamBuffersAllocated,
sizeof(*render->bitstreamBuffers)*(render->bitstreamBuffersUsed + 1) sizeof(*render->bitstreamBuffers)*(render->bitstreamBuffersUsed + 1)
); );