Browse Source

remove/replace non-ascii characters

Originally committed as revision 4237 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 21 years ago
parent
commit
30344a83e0
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      libavcodec/libpostproc/postprocess_template.c
  2. +1
    -1
      libavcodec/mpegvideo.c

+ 2
- 2
libavcodec/libpostproc/postprocess_template.c View File

@@ -3467,7 +3467,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
uint8_t *dstBlock= tempDst + dstStride;

// From this point on it is guranteed that we can read and write 16 lines downward
// finish 1 block before the next otherwise we´ll might have a problem
// finish 1 block before the next otherwise we might have a problem
// with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing
for(x=0; x<width; x+=BLOCK_SIZE)
{
@@ -3583,7 +3583,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
//printf("\n");

// From this point on it is guranteed that we can read and write 16 lines downward
// finish 1 block before the next otherwise we´ll might have a problem
// finish 1 block before the next otherwise we might have a problem
// with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing
for(x=0; x<width; x+=BLOCK_SIZE)
{


+ 1
- 1
libavcodec/mpegvideo.c View File

@@ -1771,7 +1771,7 @@ void ff_print_debug_info(MpegEncContext *s, AVFrame *pict){
else if(IS_16X8(mb_type))
av_log(s->avctx, AV_LOG_DEBUG, "-");
else if(IS_8X16(mb_type))
av_log(s->avctx, AV_LOG_DEBUG, "¦");
av_log(s->avctx, AV_LOG_DEBUG, "|");
else if(IS_INTRA(mb_type) || IS_16X16(mb_type))
av_log(s->avctx, AV_LOG_DEBUG, " ");
else


Loading…
Cancel
Save