Browse Source

rename attribute_unused to av_unused as it is declared in common.h

patch by Carl Eugen Hoyos cehoyos chez ag or at
original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused
date: 05/29/2007 01:23 PM

Originally committed as revision 23418 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Carl Eugen Hoyos Benoit Fouet 19 years ago
parent
commit
2db27aadcb
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libswscale/swscale.c
  2. +2
    -2
      libswscale/yuv2rgb.c

+ 1
- 1
libswscale/swscale.c View File

@@ -457,7 +457,7 @@ static inline void yuv2nv12XinC(int16_t *lumFilter, int16_t **lumSrc, int lumFil
int Y2 = 1<<18;\
int U = 1<<18;\
int V = 1<<18;\
type attribute_unused *r, *b, *g;\
type av_unused *r, *b, *g;\
const int i2= 2*i;\
\
for (j=0; j<lumFilterSize; j++)\


+ 2
- 2
libswscale/yuv2rgb.c View File

@@ -265,7 +265,7 @@ static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSlic
for (y=0; y<srcSliceH; y+=2){\
dst_type *dst_1= (dst_type*)(dst[0] + (y+srcSliceY )*dstStride[0]);\
dst_type *dst_2= (dst_type*)(dst[0] + (y+srcSliceY+1)*dstStride[0]);\
dst_type attribute_unused *r, *b;\
dst_type av_unused *r, *b;\
dst_type *g;\
uint8_t *py_1= src[0] + y*srcStride[0];\
uint8_t *py_2= py_1 + srcStride[0];\
@@ -273,7 +273,7 @@ static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSlic
uint8_t *pv= src[2] + (y>>1)*srcStride[2];\
unsigned int h_size= c->dstW>>3;\
while (h_size--) {\
int attribute_unused U, V;\
int av_unused U, V;\
int Y;\

#define EPILOG(dst_delta)\


Loading…
Cancel
Save