diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-17 19:26:35 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-17 19:26:35 +0000 |
commit | 00c4127ec9ff30caaa4579d2d1ef1557d870a7f1 (patch) | |
tree | f1448da44d7e30ab78ebdd2f9ae0d21801b0d889 | |
parent | 6667d5a5e54bd560e23553b658601a4b4f6f86c9 (diff) | |
download | ffmpeg-00c4127ec9ff30caaa4579d2d1ef1557d870a7f1.tar.gz |
Remove double const
Originally committed as revision 30357 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 9f18a41a51..6896d504ee 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2148,7 +2148,7 @@ static int bgr24toyv12Wrapper(SwsContext *c, const uint8_t* src[], int srcStride return srcSliceH; } -static int yvu9toyv12Wrapper(SwsContext *c, const const uint8_t* src[], int srcStride[], int srcSliceY, +static int yvu9toyv12Wrapper(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]) { int i; |