diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 18:20:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 18:20:12 +0000 |
commit | f8112810cf2f1b03e7b4f2cf87728b833d4b51bd (patch) | |
tree | a76a3bf846875fbc97b9d31e917bf57da49a004a | |
parent | 551b41d4bfea890fbf04166df47353d23fc694d0 (diff) | |
download | ffmpeg-f8112810cf2f1b03e7b4f2cf87728b833d4b51bd.tar.gz |
Remove redundant assignment in av_picture_copy() found by CSA.
Originally committed as revision 18581 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgconvert.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 23a524f7f4..08274c4034 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -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: |