diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 16:23:37 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 16:23:37 +0100 |
commit | aa43f8f317dc7880d783569921447b3c541db96a (patch) | |
tree | fc047c23ba77cfda7cef7b03761aba64fceef628 /src/libxinevdec/bitplane.c | |
parent | 01bd55e4c0d1bf95421d489b9955cd895ccd85e7 (diff) | |
parent | 3df7af4a715ee88c9acbe0136a5d15564a9c10fd (diff) | |
download | xine-lib-aa43f8f317dc7880d783569921447b3c541db96a.tar.gz xine-lib-aa43f8f317dc7880d783569921447b3c541db96a.tar.bz2 |
Merge from 1.2 main branch.
Diffstat (limited to 'src/libxinevdec/bitplane.c')
-rw-r--r-- | src/libxinevdec/bitplane.c | 38 |
1 files changed, 7 insertions, 31 deletions
diff --git a/src/libxinevdec/bitplane.c b/src/libxinevdec/bitplane.c index 77cd47db3..08bdb4c22 100644 --- a/src/libxinevdec/bitplane.c +++ b/src/libxinevdec/bitplane.c @@ -1186,8 +1186,7 @@ static void bitplane_decode_data (video_decoder_t *this_gen, this->ratio *= 2.0; } - if (this->buf) - free (this->buf); + free (this->buf); this->bufsize = VIDEOBUFSIZE; this->buf = xine_xmalloc(this->bufsize); this->size = 0; @@ -1483,35 +1482,12 @@ static void bitplane_discontinuity (video_decoder_t *this_gen) { static void bitplane_dispose (video_decoder_t *this_gen) { bitplane_decoder_t *this = (bitplane_decoder_t *) this_gen; - if (this->buf) { - free (this->buf); - this->buf = NULL; - } - - if (this->buf_uk) { - free (this->buf_uk); - this->buf_uk = NULL; - } - - if (this->buf_uk_hist) { - free (this->buf_uk_hist); - this->buf_uk_hist = NULL; - } - - if (this->index_buf) { - free (this->index_buf); - this->index_buf = NULL; - } - - if (this->index_buf_hist) { - free (this->index_buf_hist); - this->index_buf_hist = NULL; - } - - if (this->index_buf) { - free (this->index_buf); - this->index_buf = NULL; - } + free (this->buf); + free (this->buf_uk); + free (this->buf_uk_hist); + free (this->index_buf); + free (this->index_buf_hist); + free (this->index_buf); if (this->decoder_ok) { this->decoder_ok = 0; |