[FFmpeg-cvslog] r20949 - trunk/libavcodec/h263.c

diego subversion
Mon Dec 28 16:27:49 CET 2009


Author: diego
Date: Mon Dec 28 16:27:49 2009
New Revision: 20949

Log:
cosmetics: Remove pointless '#if 1' preprocessor directives.

Modified:
   trunk/libavcodec/h263.c

Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c	Mon Dec 28 16:19:36 2009	(r20948)
+++ trunk/libavcodec/h263.c	Mon Dec 28 16:27:49 2009	(r20949)
@@ -1911,7 +1911,6 @@ static void init_uni_mpeg4_rl_tab(RLTabl
                     bits_tab[index]= bits;
                     len_tab [index]= len;
                 }
-#if 1
                 /* ESC1 */
                 bits= rl->table_vlc[rl->n][0];
                 len=  rl->table_vlc[rl->n][1];
@@ -1929,8 +1928,6 @@ static void init_uni_mpeg4_rl_tab(RLTabl
                         len_tab [index]= len;
                     }
                 }
-#endif
-#if 1
                 /* ESC2 */
                 bits= rl->table_vlc[rl->n][0];
                 len=  rl->table_vlc[rl->n][1];
@@ -1948,7 +1945,6 @@ static void init_uni_mpeg4_rl_tab(RLTabl
                         len_tab [index]= len;
                     }
                 }
-#endif
                 /* ESC3 */
                 bits= rl->table_vlc[rl->n][0];
                 len = rl->table_vlc[rl->n][1];
@@ -5250,7 +5246,6 @@ int h263_decode_picture_header(MpegEncCo
      if(s->avctx->debug&FF_DEBUG_PICT_INFO){
         show_pict_info(s);
      }
-#if 1
     if (s->pict_type == FF_I_TYPE && s->codec_tag == AV_RL32("ZYGO")){
         int i,j;
         for(i=0; i<85; i++) av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&s->gb));
@@ -5265,7 +5260,6 @@ int h263_decode_picture_header(MpegEncCo
         }
         for(i=0; i<50; i++) av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&s->gb));
     }
-#endif
 
     return 0;
 }



More information about the ffmpeg-cvslog mailing list