mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
mpeg2dec: Remove dead assignment. Value overwritten later on.
This commit is contained in:
parent
2ff7c811f8
commit
3a523c2c79
1 changed files with 1 additions and 1 deletions
|
@ -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) ||
|
||||
|
|
Loading…
Reference in a new issue