Browse Source

hopefully better for platforms not supporting misaligned read

Originally committed as revision 5647 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Stefan Gehrer 19 years ago
parent
commit
3284e7f3fe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/cavs.c

+ 1
- 1
libavcodec/cavs.c View File

@@ -299,7 +299,7 @@ static inline void load_intra_pred_luma(AVSContext *h, uint8_t *top,

static void intra_pred_vert(uint8_t *d,uint8_t *top,uint8_t *left,int stride) {
int y;
uint64_t a = *((uint64_t *)(&top[1]));
uint64_t a = unaligned64(&top[1]);
for(y=0;y<8;y++) {
*((uint64_t *)(d+y*stride)) = a;
}


Loading…
Cancel
Save