Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-09 20:00:29 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-04-09 20:00:44 +0400
commit9dd50da65b89406cd4e3adb759a70d185edf51ff (patch)
treed1224db373812d488c8cd28cbe9bca4dc8650827 /libavcodec
parent9208848b99196d71602e9e2b31597a1bc5cce3b0 (diff)
parent3b18d820cc10e87d0e1453ffe51bd55501c665d1 (diff)
Merge branch 'release/0.8' into release/0.7
* release/0.8: Changelog, delete, its too inaccurate, git log is better. pngenc: Fix incorrect mask used for interlaced mode. dsp: fix diff_bytes_mmx() with small width Replace SSE2 instruction in scalarproduct_float_sse() by SSE equivalent. Update changelog for 0.7.5 release Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/pngenc.c2
-rw-r--r--libavcodec/x86/dsputilenc_mmx.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c
index c4ef2fd945..5812cdad75 100644
--- a/libavcodec/pngenc.c
+++ b/libavcodec/pngenc.c
@@ -55,7 +55,7 @@ static void png_get_interlaced_row(uint8_t *dst, int row_size,
uint8_t *d;
const uint8_t *s;
- mask = ff_png_pass_mask[pass];
+ mask = (int[]){0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff}[pass];
switch(bits_per_pixel) {
case 1:
memset(dst, 0, row_size);
diff --git a/libavcodec/x86/dsputilenc_mmx.c b/libavcodec/x86/dsputilenc_mmx.c
index bd31205a6b..0234eaad6e 100644
--- a/libavcodec/x86/dsputilenc_mmx.c
+++ b/libavcodec/x86/dsputilenc_mmx.c
@@ -823,6 +823,7 @@ static int vsad16_mmx2(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, i
static void diff_bytes_mmx(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w){
x86_reg i=0;
+ if(w>=16)
__asm__ volatile(
"1: \n\t"
"movq (%2, %0), %%mm0 \n\t"