Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: source/config/mac/ia32/vp8_rtcd.h

Issue 13474006: libvpx: Pull from upstream (Closed) Base URL: https://src.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/config/linux/x64/vp8_rtcd.h ('k') | source/config/mac/x64/vp8_rtcd.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/config/mac/ia32/vp8_rtcd.h
===================================================================
--- source/config/mac/ia32/vp8_rtcd.h (revision 191886)
+++ source/config/mac/ia32/vp8_rtcd.h (working copy)
@@ -22,6 +22,10 @@
union int_mv;
struct yv12_buffer_config;
+void vp8_clear_system_state_c();
+void vpx_reset_mmx_state();
+RTCD_EXTERN void (*vp8_clear_system_state)();
+
void vp8_dequantize_b_c(struct blockd*, short *dqc);
void vp8_dequantize_b_mmx(struct blockd*, short *dqc);
RTCD_EXTERN void (*vp8_dequantize_b)(struct blockd*, short *dqc);
@@ -480,6 +484,9 @@
(void)flags;
+ vp8_clear_system_state = vp8_clear_system_state_c;
+ if (flags & HAS_MMX) vp8_clear_system_state = vpx_reset_mmx_state;
+
vp8_dequantize_b = vp8_dequantize_b_c;
if (flags & HAS_MMX) vp8_dequantize_b = vp8_dequantize_b_mmx;
« no previous file with comments | « source/config/linux/x64/vp8_rtcd.h ('k') | source/config/mac/x64/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698