Commit ae70f1f8 authored by mru's avatar mru

typo fix by Dmitry Antipov dmantipov =a= yandex =d= ru


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7763 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d6e7a2be
......@@ -72,7 +72,7 @@ static inline void dct_unquantize_h263_helper_c(DCTELEM *block, int qmul, int qa
int xqmul = xxqmul, xqadd = xxqadd, xcount = xxcount, xtmp; \
int xdata1, xdata2; \
__asm__ __volatile__( \
"subs %[count], #2 \n\t" \
"subs %[count], %[count], #2 \n\t" \
"ble 2f \n\t" \
"ldrd r4, [%[block], #0] \n\t" \
"1: \n\t" \
......@@ -128,11 +128,11 @@ __asm__ __volatile__( \
"strh r7, [%[block]], #2 \n\t" \
"strh %[data2], [%[block]], #2 \n\t" \
\
"subs %[count], #8 \n\t" \
"subs %[count], %[count], #8 \n\t" \
"ldrgtd r4, [%[block], #0] \n\t" /* load data early to avoid load/use pipeline stall */ \
"bgt 1b \n\t" \
\
"adds %[count], #2 \n\t" \
"adds %[count], %[count], #2 \n\t" \
"ble 3f \n\t" \
"2: \n\t" \
"ldrsh %[data1], [%[block], #0] \n\t" \
......
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