Commit 97237fa0 authored by mru's avatar mru

remove/replace non-ascii characters


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4237 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 632e19ae
...@@ -3467,7 +3467,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int ...@@ -3467,7 +3467,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
uint8_t *dstBlock= tempDst + dstStride; uint8_t *dstBlock= tempDst + dstStride;
// From this point on it is guranteed that we can read and write 16 lines downward // From this point on it is guranteed that we can read and write 16 lines downward
// finish 1 block before the next otherwise well 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 // 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) 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 ...@@ -3583,7 +3583,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
//printf("\n"); //printf("\n");
// From this point on it is guranteed that we can read and write 16 lines downward // From this point on it is guranteed that we can read and write 16 lines downward
// finish 1 block before the next otherwise well 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 // 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) for(x=0; x<width; x+=BLOCK_SIZE)
{ {
......
...@@ -1771,7 +1771,7 @@ void ff_print_debug_info(MpegEncContext *s, AVFrame *pict){ ...@@ -1771,7 +1771,7 @@ void ff_print_debug_info(MpegEncContext *s, AVFrame *pict){
else if(IS_16X8(mb_type)) else if(IS_16X8(mb_type))
av_log(s->avctx, AV_LOG_DEBUG, "-"); av_log(s->avctx, AV_LOG_DEBUG, "-");
else if(IS_8X16(mb_type)) 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)) else if(IS_INTRA(mb_type) || IS_16X16(mb_type))
av_log(s->avctx, AV_LOG_DEBUG, " "); av_log(s->avctx, AV_LOG_DEBUG, " ");
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment