Skip to content

Commit

Permalink
common/i386/predict-c.c: Don't use a list initializer in the declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
  • Loading branch information
1480c1 committed Sep 14, 2021
1 parent fbecc4f commit 8ca9fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/i386/predict-c.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*****************************************************************************
* Copyright (C) 2009 xavs project
*
* Authors:
* Authors:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -31,7 +31,7 @@ extern void predict_8x8c_dc_left_mmxext( uint8_t *src,int i_neighbor );
extern void predict_8x8c_dc_mmxext( uint8_t *src,int i_neighbor );
extern void predict_8x8c_v_mmxext( uint8_t *src, int i_neighbor );
extern void predict_8x8c_dc_top_mmxext( uint8_t *src,int i_neighbor );
extern void predict_8x8c_p_core_mmxext( src, i00, b, c );
extern void predict_8x8c_p_core_mmxext( uint8_t *src, int i00, int b, int c );
extern void predict_8x8_h_mmxext( uint8_t *src, int i_neighbor );
extern void predict_8x8_v_mmxext( uint8_t *src, int i_neighbor );
extern void predict_8x8_dc_128_mmxext( uint8_t *src, int i_neighbor );
Expand Down

0 comments on commit 8ca9fc7

Please sign in to comment.