libavcodec/h261.c
c6148de2
 /*
d632239c
  * H261 common code
c6148de2
  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  * Copyright (c) 2004 Maarten Daniels
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
c6148de2
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
c6148de2
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
c6148de2
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c6148de2
  */
 
 /**
ba87f080
  * @file
c6148de2
  * h261codec.
  */
 
 #include "dsputil.h"
 #include "avcodec.h"
d632239c
 #include "h261.h"
c6148de2
 
 #define IS_FIL(a)    ((a)&MB_TYPE_H261_FIL)
 
d632239c
 uint8_t ff_h261_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3];
3502a54f
 
5f6c92d4
 void ff_h261_loop_filter(MpegEncContext *s){
     H261Context * h= (H261Context*)s;
c6148de2
     const int linesize  = s->linesize;
     const int uvlinesize= s->uvlinesize;
     uint8_t *dest_y = s->dest[0];
     uint8_t *dest_cb= s->dest[1];
     uint8_t *dest_cr= s->dest[2];
5f6c92d4
 
     if(!(IS_FIL (h->mtype)))
         return;
 
fdbbf2e0
     s->dsp.h261_loop_filter(dest_y                   , linesize);
     s->dsp.h261_loop_filter(dest_y                + 8, linesize);
     s->dsp.h261_loop_filter(dest_y + 8 * linesize    , linesize);
     s->dsp.h261_loop_filter(dest_y + 8 * linesize + 8, linesize);
     s->dsp.h261_loop_filter(dest_cb, uvlinesize);
     s->dsp.h261_loop_filter(dest_cr, uvlinesize);
c6148de2
 }