Browse Source

Remove unused variable, patch by Art Clarke, aclarke vlideshow com.

Originally committed as revision 15748 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Art Clarke Diego Biurrun 17 years ago
parent
commit
bc48bb0822
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavcodec/imgconvert.c

+ 1
- 3
libavcodec/imgconvert.c View File

@@ -894,12 +894,10 @@ void av_picture_copy(AVPicture *dst, const AVPicture *src,
case FF_PIXEL_PACKED:
case FF_PIXEL_PLANAR:
for(i = 0; i < pf->nb_channels; i++) {
int w, h;
int h;
int bwidth = ff_get_plane_bytewidth(pix_fmt, width, i);
w = width;
h = height;
if (i == 1 || i == 2) {
w >>= pf->x_chroma_shift;
h= -((-height)>>pf->y_chroma_shift);
}
ff_img_copy_plane(dst->data[i], dst->linesize[i],


Loading…
Cancel
Save