comparison mpegvideo.c @ 6580:b03c23f8f268 libavcodec

cosmetics: Break an overly long line. patch by Keiji Costantini, lists strites net
author diego
date Thu, 10 Apr 2008 19:09:39 +0000
parents 34717463c154
children 7ecd59aa5757
comparison
equal deleted inserted replaced
6579:bd5c42ff9e27 6580:b03c23f8f268
1733 s->mv_dir : motion vector direction 1733 s->mv_dir : motion vector direction
1734 s->mv_type : motion vector type 1734 s->mv_type : motion vector type
1735 s->mv : motion vector 1735 s->mv : motion vector
1736 s->interlaced_dct : true if interlaced dct used (mpeg2) 1736 s->interlaced_dct : true if interlaced dct used (mpeg2)
1737 */ 1737 */
1738 static av_always_inline void MPV_decode_mb_internal(MpegEncContext *s, DCTELEM block[12][64], int lowres_flag) 1738 static av_always_inline
1739 void MPV_decode_mb_internal(MpegEncContext *s, DCTELEM block[12][64],
1740 int lowres_flag)
1739 { 1741 {
1740 int mb_x, mb_y; 1742 int mb_x, mb_y;
1741 const int mb_xy = s->mb_y * s->mb_stride + s->mb_x; 1743 const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
1742 #ifdef HAVE_XVMC 1744 #ifdef HAVE_XVMC
1743 if(s->avctx->xvmc_acceleration){ 1745 if(s->avctx->xvmc_acceleration){