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

Side by Side Diff: source/patched-ffmpeg-mt/libavcodec/x86/simple_idct_mmx.c

Issue 3384002: ffmpeg source update for sep 09 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: Created 10 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Simple IDCT MMX 2 * Simple IDCT MMX
3 * 3 *
4 * Copyright (c) 2001, 2002 Michael Niedermayer <michaelni@gmx.at> 4 * Copyright (c) 2001, 2002 Michael Niedermayer <michaelni@gmx.at>
5 * 5 *
6 * This file is part of FFmpeg. 6 * This file is part of FFmpeg.
7 * 7 *
8 * FFmpeg is free software; you can redistribute it and/or 8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 void ff_simple_idct_mmx(int16_t *block) 1280 void ff_simple_idct_mmx(int16_t *block)
1281 { 1281 {
1282 idct(block); 1282 idct(block);
1283 } 1283 }
1284 1284
1285 //FIXME merge add/put into the idct 1285 //FIXME merge add/put into the idct
1286 1286
1287 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block) 1287 void ff_simple_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block)
1288 { 1288 {
1289 idct(block); 1289 idct(block);
1290 put_pixels_clamped_mmx(block, dest, line_size); 1290 ff_put_pixels_clamped_mmx(block, dest, line_size);
1291 } 1291 }
1292 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block) 1292 void ff_simple_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block)
1293 { 1293 {
1294 idct(block); 1294 idct(block);
1295 add_pixels_clamped_mmx(block, dest, line_size); 1295 ff_add_pixels_clamped_mmx(block, dest, line_size);
1296 } 1296 }
OLDNEW
« no previous file with comments | « source/patched-ffmpeg-mt/libavcodec/x86/rv40dsp_mmx.c ('k') | source/patched-ffmpeg-mt/libavcodec/x86/snowdsp_mmx.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698