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

Side by Side Diff: source/libvpx/vpx_dsp/mips/inv_txfm_msa.h

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 k0_m = VP9_SET_COSPI_PAIR(cospi_16_64, cospi_16_64); \ 394 k0_m = VP9_SET_COSPI_PAIR(cospi_16_64, cospi_16_64); \
395 k1_m = VP9_SET_COSPI_PAIR(-cospi_16_64, -cospi_16_64); \ 395 k1_m = VP9_SET_COSPI_PAIR(-cospi_16_64, -cospi_16_64); \
396 k2_m = VP9_SET_COSPI_PAIR(cospi_16_64, -cospi_16_64); \ 396 k2_m = VP9_SET_COSPI_PAIR(cospi_16_64, -cospi_16_64); \
397 k3_m = VP9_SET_COSPI_PAIR(-cospi_16_64, cospi_16_64); \ 397 k3_m = VP9_SET_COSPI_PAIR(-cospi_16_64, cospi_16_64); \
398 MADD_SHORT(h10_m, h11_m, k1_m, k2_m, out2, out3); \ 398 MADD_SHORT(h10_m, h11_m, k1_m, k2_m, out2, out3); \
399 MADD_SHORT(out6, out7, k0_m, k3_m, out6, out7); \ 399 MADD_SHORT(out6, out7, k0_m, k3_m, out6, out7); \
400 MADD_SHORT(out10, out11, k0_m, k3_m, out10, out11); \ 400 MADD_SHORT(out10, out11, k0_m, k3_m, out10, out11); \
401 MADD_SHORT(out14, out15, k1_m, k2_m, out14, out15); \ 401 MADD_SHORT(out14, out15, k1_m, k2_m, out14, out15); \
402 } 402 }
403 403
404 void vp9_idct16_1d_columns_addblk_msa(int16_t *input, uint8_t *dst, 404 void vpx_idct16_1d_columns_addblk_msa(int16_t *input, uint8_t *dst,
405 int32_t dst_stride); 405 int32_t dst_stride);
406 void vp9_idct16_1d_rows_msa(const int16_t *input, int16_t *output); 406 void vpx_idct16_1d_rows_msa(const int16_t *input, int16_t *output);
407 void vp9_iadst16_1d_columns_addblk_msa(int16_t *input, uint8_t *dst, 407 void vpx_iadst16_1d_columns_addblk_msa(int16_t *input, uint8_t *dst,
408 int32_t dst_stride); 408 int32_t dst_stride);
409 void vp9_iadst16_1d_rows_msa(const int16_t *input, int16_t *output); 409 void vpx_iadst16_1d_rows_msa(const int16_t *input, int16_t *output);
410 #endif // VPX_DSP_MIPS_INV_TXFM_MSA_H_ 410 #endif // VPX_DSP_MIPS_INV_TXFM_MSA_H_
OLDNEW
« no previous file with comments | « source/libvpx/vpx_dsp/mips/inv_txfm_dspr2.h ('k') | source/libvpx/vpx_dsp/mips/itrans16_dspr2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698