mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
use intended const syntax
Originally committed as revision 22165 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d5963ee64a
commit
f087881207
@ -93,7 +93,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
||||
* @param plane plane number to decode as
|
||||
*/
|
||||
#define DECLARE_DECODEPLANE(suffix, type) \
|
||||
static void decodeplane##suffix(void *dst, const uint8_t const *buf, int buf_size, int bps, int plane) \
|
||||
static void decodeplane##suffix(void *dst, const uint8_t *const buf, int buf_size, int bps, int plane) \
|
||||
{ \
|
||||
GetBitContext gb; \
|
||||
int i, b; \
|
||||
|
Loading…
Reference in New Issue
Block a user