comparison imgconvert.c @ 12470:319673d2bd4b libavcodec

Reindent.
author stefano
date Tue, 07 Sep 2010 21:23:59 +0000
parents 9471234fb8ea
children 3fff0806404a
comparison
equal deleted inserted replaced
12469:9471234fb8ea 12470:319673d2bd4b
805 805
806 void av_picture_copy(AVPicture *dst, const AVPicture *src, 806 void av_picture_copy(AVPicture *dst, const AVPicture *src,
807 enum PixelFormat pix_fmt, int width, int height) 807 enum PixelFormat pix_fmt, int width, int height)
808 { 808 {
809 av_image_copy(dst->data, dst->linesize, src->data, 809 av_image_copy(dst->data, dst->linesize, src->data,
810 src->linesize, pix_fmt, width, height); 810 src->linesize, pix_fmt, width, height);
811 } 811 }
812 812
813 /* 2x2 -> 1x1 */ 813 /* 2x2 -> 1x1 */
814 void ff_shrink22(uint8_t *dst, int dst_wrap, 814 void ff_shrink22(uint8_t *dst, int dst_wrap,
815 const uint8_t *src, int src_wrap, 815 const uint8_t *src, int src_wrap,