diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-06 01:44:06 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-06 01:44:06 +0000 |
commit | 4ae936639132b75872ee84444c59d1914cc2292d (patch) | |
tree | 48cbb7520514e8dbaae9d8496011e1f1129165cf /src/libdivx4/xine_decoder.c | |
parent | 543eb5bd795bbec6814be1642be85f4bc3a13bac (diff) | |
download | xine-lib-4ae936639132b75872ee84444c59d1914cc2292d.tar.gz xine-lib-4ae936639132b75872ee84444c59d1914cc2292d.tar.bz2 |
remove img->copy from all decoders
CVS patchset: 3436
CVS date: 2002/12/06 01:44:06
Diffstat (limited to 'src/libdivx4/xine_decoder.c')
-rw-r--r-- | src/libdivx4/xine_decoder.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/libdivx4/xine_decoder.c b/src/libdivx4/xine_decoder.c index e03f245b9..34191dafa 100644 --- a/src/libdivx4/xine_decoder.c +++ b/src/libdivx4/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.43 2002/09/05 22:18:56 mroi Exp $ + * $Id: xine_decoder.c,v 1.44 2002/12/06 01:44:06 miguelfreitas Exp $ * * xine decoder plugin using divx4 * @@ -325,25 +325,6 @@ static inline void divx4_copy_frame(divx4_decoder_t *this, vo_frame_t *img, dst_offset_v += img->pitches[2]; } } - - /* check for the copy function pointer. If set, we need to call it - with slices of 16 lines. Too bad we can't set the y,u and v - stride values (because then we wouldn't need the first copy) */ - if (img->copy && img->bad_frame == 0) { - int height = img->height; - uint8_t *src[3]; - - src[0] = img->base[0]; - src[1] = img->base[1]; - src[2] = img->base[2]; - - while ((height -= 16) >= 0) { - img->copy(img, src); - src[0] += 16 * img->pitches[0]; - src[1] += 8 * img->pitches[1]; - src[2] += 8 * img->pitches[2]; - } - } } static int divx4_can_handle (video_decoder_t *this_gen, int buf_type) { |