OSDN Git Service

Merge commit 'd258531502b24cb653204fe4f003c8815755bdc4'
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 16 Aug 2013 10:38:12 +0000 (12:38 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 16 Aug 2013 10:40:32 +0000 (12:40 +0200)
* commit 'd258531502b24cb653204fe4f003c8815755bdc4':
  swscale: Mark a bunch of tables only used within one file static

Conflicts:
libswscale/swscale_unscaled.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
1  2 
libswscale/swscale.c
libswscale/swscale_internal.h
libswscale/swscale_unscaled.c

Simple merge
@@@ -814,9 -719,7 +814,8 @@@ static av_always_inline int usePal(enu
  
  extern const uint64_t ff_dither4[2];
  extern const uint64_t ff_dither8[2];
- extern const uint8_t dithers[8][8][8];
  
 +
  extern const AVClass sws_context_class;
  
  /**
  #include "libavutil/mathematics.h"
  #include "libavutil/bswap.h"
  #include "libavutil/pixdesc.h"
 +#include "libavutil/avassert.h"
  
- DECLARE_ALIGNED(8, const uint8_t, dithers)[8][8][8]={
 -DECLARE_ALIGNED(8, static const uint8_t, dither_8x8_1)[8][8] = {
 -    {   0,  1,  0,  1,  0,  1,  0,  1,},
 -    {   1,  0,  1,  0,  1,  0,  1,  0,},
 -    {   0,  1,  0,  1,  0,  1,  0,  1,},
 -    {   1,  0,  1,  0,  1,  0,  1,  0,},
 -    {   0,  1,  0,  1,  0,  1,  0,  1,},
 -    {   1,  0,  1,  0,  1,  0,  1,  0,},
 -    {   0,  1,  0,  1,  0,  1,  0,  1,},
 -    {   1,  0,  1,  0,  1,  0,  1,  0,},
 -};
 -DECLARE_ALIGNED(8, static const uint8_t, dither_8x8_3)[8][8] = {
 -    {   1,  2,  1,  2,  1,  2,  1,  2,},
 -    {   3,  0,  3,  0,  3,  0,  3,  0,},
 -    {   1,  2,  1,  2,  1,  2,  1,  2,},
 -    {   3,  0,  3,  0,  3,  0,  3,  0,},
 -    {   1,  2,  1,  2,  1,  2,  1,  2,},
 -    {   3,  0,  3,  0,  3,  0,  3,  0,},
 -    {   1,  2,  1,  2,  1,  2,  1,  2,},
 -    {   3,  0,  3,  0,  3,  0,  3,  0,},
 -};
 -DECLARE_ALIGNED(8, static const uint8_t, dither_8x8_64)[8][8] = {
 -    {  18, 34, 30, 46, 17, 33, 29, 45,},
 -    {  50,  2, 62, 14, 49,  1, 61, 13,},
 -    {  26, 42, 22, 38, 25, 41, 21, 37,},
 -    {  58, 10, 54,  6, 57,  9, 53,  5,},
 -    {  16, 32, 28, 44, 19, 35, 31, 47,},
 -    {  48,  0, 60, 12, 51,  3, 63, 15,},
 -    {  24, 40, 20, 36, 27, 43, 23, 39,},
 -    {  56,  8, 52,  4, 59, 11, 55,  7,},
 -};
 -extern const uint8_t dither_8x8_128[8][8];
 -DECLARE_ALIGNED(8, static const uint8_t, dither_8x8_256)[8][8] = {
 -    {  72, 136, 120, 184,  68, 132, 116, 180,},
 -    { 200,   8, 248,  56, 196,   4, 244,  52,},
 -    { 104, 168,  88, 152, 100, 164,  84, 148,},
 -    { 232,  40, 216,  24, 228,  36, 212,  20,},
 -    {  64, 128, 102, 176,  76, 140, 124, 188,},
 -    { 192,   0, 240,  48, 204,  12, 252,  60,},
 -    {  96, 160,  80, 144, 108, 172,  92, 156,},
 -    { 224,  32, 208,  16, 236,  44, 220,  28,},
++DECLARE_ALIGNED(8, static const uint8_t, dithers)[8][8][8]={
 +{
 +  {   0,  1,  0,  1,  0,  1,  0,  1,},
 +  {   1,  0,  1,  0,  1,  0,  1,  0,},
 +  {   0,  1,  0,  1,  0,  1,  0,  1,},
 +  {   1,  0,  1,  0,  1,  0,  1,  0,},
 +  {   0,  1,  0,  1,  0,  1,  0,  1,},
 +  {   1,  0,  1,  0,  1,  0,  1,  0,},
 +  {   0,  1,  0,  1,  0,  1,  0,  1,},
 +  {   1,  0,  1,  0,  1,  0,  1,  0,},
 +},{
 +  {   1,  2,  1,  2,  1,  2,  1,  2,},
 +  {   3,  0,  3,  0,  3,  0,  3,  0,},
 +  {   1,  2,  1,  2,  1,  2,  1,  2,},
 +  {   3,  0,  3,  0,  3,  0,  3,  0,},
 +  {   1,  2,  1,  2,  1,  2,  1,  2,},
 +  {   3,  0,  3,  0,  3,  0,  3,  0,},
 +  {   1,  2,  1,  2,  1,  2,  1,  2,},
 +  {   3,  0,  3,  0,  3,  0,  3,  0,},
 +},{
 +  {   2,  4,  3,  5,  2,  4,  3,  5,},
 +  {   6,  0,  7,  1,  6,  0,  7,  1,},
 +  {   3,  5,  2,  4,  3,  5,  2,  4,},
 +  {   7,  1,  6,  0,  7,  1,  6,  0,},
 +  {   2,  4,  3,  5,  2,  4,  3,  5,},
 +  {   6,  0,  7,  1,  6,  0,  7,  1,},
 +  {   3,  5,  2,  4,  3,  5,  2,  4,},
 +  {   7,  1,  6,  0,  7,  1,  6,  0,},
 +},{
 +  {   4,  8,  7, 11,  4,  8,  7, 11,},
 +  {  12,  0, 15,  3, 12,  0, 15,  3,},
 +  {   6, 10,  5,  9,  6, 10,  5,  9,},
 +  {  14,  2, 13,  1, 14,  2, 13,  1,},
 +  {   4,  8,  7, 11,  4,  8,  7, 11,},
 +  {  12,  0, 15,  3, 12,  0, 15,  3,},
 +  {   6, 10,  5,  9,  6, 10,  5,  9,},
 +  {  14,  2, 13,  1, 14,  2, 13,  1,},
 +},{
 +  {   9, 17, 15, 23,  8, 16, 14, 22,},
 +  {  25,  1, 31,  7, 24,  0, 30,  6,},
 +  {  13, 21, 11, 19, 12, 20, 10, 18,},
 +  {  29,  5, 27,  3, 28,  4, 26,  2,},
 +  {   8, 16, 14, 22,  9, 17, 15, 23,},
 +  {  24,  0, 30,  6, 25,  1, 31,  7,},
 +  {  12, 20, 10, 18, 13, 21, 11, 19,},
 +  {  28,  4, 26,  2, 29,  5, 27,  3,},
 +},{
 +  {  18, 34, 30, 46, 17, 33, 29, 45,},
 +  {  50,  2, 62, 14, 49,  1, 61, 13,},
 +  {  26, 42, 22, 38, 25, 41, 21, 37,},
 +  {  58, 10, 54,  6, 57,  9, 53,  5,},
 +  {  16, 32, 28, 44, 19, 35, 31, 47,},
 +  {  48,  0, 60, 12, 51,  3, 63, 15,},
 +  {  24, 40, 20, 36, 27, 43, 23, 39,},
 +  {  56,  8, 52,  4, 59, 11, 55,  7,},
 +},{
 +  {  18, 34, 30, 46, 17, 33, 29, 45,},
 +  {  50,  2, 62, 14, 49,  1, 61, 13,},
 +  {  26, 42, 22, 38, 25, 41, 21, 37,},
 +  {  58, 10, 54,  6, 57,  9, 53,  5,},
 +  {  16, 32, 28, 44, 19, 35, 31, 47,},
 +  {  48,  0, 60, 12, 51,  3, 63, 15,},
 +  {  24, 40, 20, 36, 27, 43, 23, 39,},
 +  {  56,  8, 52,  4, 59, 11, 55,  7,},
 +},{
 +  {  36, 68, 60, 92, 34, 66, 58, 90,},
 +  { 100,  4,124, 28, 98,  2,122, 26,},
 +  {  52, 84, 44, 76, 50, 82, 42, 74,},
 +  { 116, 20,108, 12,114, 18,106, 10,},
 +  {  32, 64, 56, 88, 38, 70, 62, 94,},
 +  {  96,  0,120, 24,102,  6,126, 30,},
 +  {  48, 80, 40, 72, 54, 86, 46, 78,},
 +  { 112, 16,104,  8,118, 22,110, 14,},
 +}};
 +
 +static const uint16_t dither_scale[15][16]={
 +{    2,    3,    3,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,    5,},
 +{    2,    3,    7,    7,   13,   13,   25,   25,   25,   25,   25,   25,   25,   25,   25,   25,},
 +{    3,    3,    4,   15,   15,   29,   57,   57,   57,  113,  113,  113,  113,  113,  113,  113,},
 +{    3,    4,    4,    5,   31,   31,   61,  121,  241,  241,  241,  241,  481,  481,  481,  481,},
 +{    3,    4,    5,    5,    6,   63,   63,  125,  249,  497,  993,  993,  993,  993,  993, 1985,},
 +{    3,    5,    6,    6,    6,    7,  127,  127,  253,  505, 1009, 2017, 4033, 4033, 4033, 4033,},
 +{    3,    5,    6,    7,    7,    7,    8,  255,  255,  509, 1017, 2033, 4065, 8129,16257,16257,},
 +{    3,    5,    6,    8,    8,    8,    8,    9,  511,  511, 1021, 2041, 4081, 8161,16321,32641,},
 +{    3,    5,    7,    8,    9,    9,    9,    9,   10, 1023, 1023, 2045, 4089, 8177,16353,32705,},
 +{    3,    5,    7,    8,   10,   10,   10,   10,   10,   11, 2047, 2047, 4093, 8185,16369,32737,},
 +{    3,    5,    7,    8,   10,   11,   11,   11,   11,   11,   12, 4095, 4095, 8189,16377,32753,},
 +{    3,    5,    7,    9,   10,   12,   12,   12,   12,   12,   12,   13, 8191, 8191,16381,32761,},
 +{    3,    5,    7,    9,   10,   12,   13,   13,   13,   13,   13,   13,   14,16383,16383,32765,},
 +{    3,    5,    7,    9,   10,   12,   14,   14,   14,   14,   14,   14,   14,   15,32767,32767,},
 +{    3,    5,    7,    9,   11,   12,   14,   15,   15,   15,   15,   15,   15,   15,   16,65535,},
  };
  
 -#define RGB2YUV_SHIFT 15
 -#define BY ( (int) (0.114 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define BV (-(int) (0.081 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define BU ( (int) (0.500 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define GY ( (int) (0.587 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define GV (-(int) (0.419 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define GU (-(int) (0.331 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define RY ( (int) (0.299 * 219 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define RV ( (int) (0.500 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
 -#define RU (-(int) (0.169 * 224 / 255 * (1 << RGB2YUV_SHIFT) + 0.5))
  
  static void fillPlane(uint8_t *plane, int stride, int width, int height, int y,
                        uint8_t val)