OSDN Git Service

The funny memcpyin svq3 generally has src & dst overlapping, so it
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 16 Jul 2008 02:10:21 +0000 (02:10 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 16 Jul 2008 02:10:21 +0000 (02:10 +0000)
should at least be a memmove().

Originally committed as revision 14254 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/svq3.c

index 67fa317..a5868e1 100644 (file)
@@ -704,7 +704,7 @@ static int svq3_decode_slice_header (H264Context *h) {
     skip_bits(&s->gb, 8);
 
     if (length > 0) {
-      memcpy ((uint8_t *) &s->gb.buffer[get_bits_count(&s->gb) >> 3],
+      memmove ((uint8_t *) &s->gb.buffer[get_bits_count(&s->gb) >> 3],
              &s->gb.buffer[s->gb.size_in_bits >> 3], (length - 1));
     }
   }