changeset 6377:931ca319f2fe libavcodec

Fix ;;
author michael
date Tue, 19 Feb 2008 22:09:08 +0000
parents f70b8e837ecc
children 99823c80a93d
files flac.c g726.c h264.c mpegvideo.c vp3.c vqavideo.c
diffstat 6 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/flac.c	Tue Feb 19 21:55:13 2008 +0000
+++ b/flac.c	Tue Feb 19 22:09:08 2008 +0000
@@ -721,7 +721,7 @@
 
 //    s->last_blocksize = s->blocksize;
 end:
-    i= (get_bits_count(&s->gb)+7)/8;;
+    i= (get_bits_count(&s->gb)+7)/8;
     if(i > buf_size){
         av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
         s->bitstream_size=0;
--- a/g726.c	Tue Feb 19 21:55:13 2008 +0000
+++ b/g726.c	Tue Feb 19 22:09:08 2008 +0000
@@ -387,7 +387,7 @@
     mask = (1<<c->code_size) - 1;
     init_get_bits(&gb, buf, buf_size * 8);
     if (c->bits_left) {
-        int s = c->code_size - c->bits_left;;
+        int s = c->code_size - c->bits_left;
         code = (c->bit_buffer << s) | get_bits(&gb, s);
         *samples++ = g726_decode(&c->c, code & mask);
     }
--- a/h264.c	Tue Feb 19 21:55:13 2008 +0000
+++ b/h264.c	Tue Feb 19 22:09:08 2008 +0000
@@ -2919,7 +2919,7 @@
                 if(sel != PICT_FRAME) continue;
 
                 frame_list[ list ][index  ]= *h->long_ref[i];
-                frame_list[ list ][index++].pic_id= i;;
+                frame_list[ list ][index++].pic_id= i;
             }
             len[list] = index;
         }
@@ -2963,7 +2963,7 @@
             sel = h->long_ref[i]->reference | structure_sel;
             if(sel != PICT_FRAME) continue;
             frame_list[0][index  ]= *h->long_ref[i];
-            frame_list[0][index++].pic_id= i;;
+            frame_list[0][index++].pic_id= i;
         }
 
         if (FIELD_PICTURE)
@@ -5498,7 +5498,7 @@
             if( !qmul ) {
                 block[j] = get_cabac_bypass_sign( CC, -1);
             }else{
-                block[j] = (get_cabac_bypass_sign( CC, -qmul[j]) + 32) >> 6;;
+                block[j] = (get_cabac_bypass_sign( CC, -qmul[j]) + 32) >> 6;
             }
 
             abslevel1++;
--- a/mpegvideo.c	Tue Feb 19 21:55:13 2008 +0000
+++ b/mpegvideo.c	Tue Feb 19 22:09:08 2008 +0000
@@ -1097,8 +1097,8 @@
         for(y= 0; y <= ey; y++){
             x = (y*f)>>16;
             fr= (y*f)&0xFFFF;
-            buf[y*stride + x  ]+= (color*(0x10000-fr))>>16;;
-            buf[y*stride + x+1]+= (color*         fr )>>16;;
+            buf[y*stride + x  ]+= (color*(0x10000-fr))>>16;
+            buf[y*stride + x+1]+= (color*         fr )>>16;
         }
     }
 }
@@ -2129,7 +2129,7 @@
             offset[2]=
             offset[3]= 0;
         }else{
-            offset[0]= y * s->linesize;;
+            offset[0]= y * s->linesize;
             offset[1]=
             offset[2]= (y >> s->chroma_y_shift) * s->uvlinesize;
             offset[3]= 0;
--- a/vp3.c	Tue Feb 19 21:55:13 2008 +0000
+++ b/vp3.c	Tue Feb 19 22:09:08 2008 +0000
@@ -473,7 +473,7 @@
     current_width = -1;
     current_height = 0;
     superblock_row_inc = s->macroblock_width -
-        (s->y_superblock_width * 2 - s->macroblock_width);;
+        (s->y_superblock_width * 2 - s->macroblock_width);
     hilbert = hilbert_walk_mb;
     mapping_index = 0;
     current_macroblock = -1;
--- a/vqavideo.c	Tue Feb 19 21:55:13 2008 +0000
+++ b/vqavideo.c	Tue Feb 19 22:09:08 2008 +0000
@@ -133,7 +133,7 @@
 {
     VqaContext *s = avctx->priv_data;
     unsigned char *vqa_header;
-    int i, j, codebook_index;;
+    int i, j, codebook_index;
 
     s->avctx = avctx;
     avctx->pix_fmt = PIX_FMT_PAL8;