1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

Remove redundant assignment in av_picture_copy() found by CSA.

Originally committed as revision 18581 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-04-17 18:20:12 +00:00
parent 551b41d4bf
commit f8112810cf

View File

@ -1072,7 +1072,6 @@ void av_picture_copy(AVPicture *dst, const AVPicture *src,
int i;
const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
pf = &pix_fmt_info[pix_fmt];
switch(pf->pixel_type) {
case FF_PIXEL_PACKED:
case FF_PIXEL_PLANAR: