Suppress garbage at the end of some subtitles.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6460 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
kmkaplan 2002-06-17 19:11:22 +00:00
parent 6b5dd5b561
commit c23212ca9c
1 changed files with 4 additions and 1 deletions

View File

@ -208,8 +208,11 @@ static void spudec_process_data(spudec_handle_t *this)
/* Kludge: draw_alpha needs width multiple of 8. */
if (this->width < this->stride)
for (y = 0; y < this->height; ++y)
for (y = 0; y < this->height; ++y) {
memset(this->aimage + y * this->stride + this->width, 0, this->stride - this->width);
/* FIXME: Why is this one needed? */
memset(this->image + y * this->stride + this->width, 0, this->stride - this->width);
}
i = this->current_nibble[1];
x = 0;