mpeg2dec: Remove dead assignment. Value overwritten later on.

This commit is contained in:
Edward Hervey 2009-04-19 14:03:19 +02:00
parent 2ff7c811f8
commit 3a523c2c79

View file

@ -400,7 +400,7 @@ crop_buffer (GstMpeg2dec * mpeg2dec, GstBuffer ** buf)
{
gboolean result = TRUE;
GstBuffer *input = *buf;
GstBuffer *outbuf = input;
GstBuffer *outbuf;
/*We crop only if the target region is smaller than the input one */
if ((mpeg2dec->decoded_width > mpeg2dec->width) ||