1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-11 14:30:22 +02:00

xl: K&R formatting cosmetics

This commit is contained in:
Luca Barbato
2013-07-27 20:01:03 +02:00
parent 270d7e3a18
commit e13a929314

View File

@ -33,7 +33,8 @@ static const int xl_table[32] = {
0, 1, 2, 3, 4, 5, 6, 7,
8, 9, 12, 15, 20, 25, 34, 46,
64, 82, 94, 103, 108, 113, 116, 119,
120, 121, 122, 123, 124, 125, 126, 127};
120, 121, 122, 123, 124, 125, 126, 127
};
static int decode_frame(AVCodecContext *avctx,
void *data, int *got_frame,
@ -117,7 +118,8 @@ static int decode_frame(AVCodecContext *avctx,
return buf_size;
}
static av_cold int decode_init(AVCodecContext *avctx){
static av_cold int decode_init(AVCodecContext *avctx)
{
avctx->pix_fmt = AV_PIX_FMT_YUV411P;
return 0;