libvorbis: Use memmove instead of memcpy for shifting data
authorMartin Storsjö <martin@martin.st>
Wed, 16 Jun 2010 19:03:54 +0000 (19:03 +0000)
committerMartin Storsjö <martin@martin.st>
Wed, 16 Jun 2010 19:03:54 +0000 (19:03 +0000)
Originally committed as revision 23631 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/libvorbis.c

index f9a1b32..a7044a2 100644 (file)
@@ -192,7 +192,7 @@ static int oggvorbis_encode_frame(AVCodecContext *avccontext,
 
         memcpy(packets, op2->packet, l);
         context->buffer_index -= l + sizeof(ogg_packet);
-        memcpy(context->buffer, context->buffer + l + sizeof(ogg_packet), context->buffer_index);
+        memmove(context->buffer, context->buffer + l + sizeof(ogg_packet), context->buffer_index);
 //        av_log(avccontext, AV_LOG_DEBUG, "E%d\n", l);
     }