diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-13 15:20:00 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-01 01:13:18 +0200 |
commit | a7dbfcf6cb6ab8a8981d74332fd02fb90360d22f (patch) | |
tree | fcd1340f6a1f2ff1fa32e17b0c01996c53a0dde9 /libavcodec/sgienc.c | |
parent | ca36aa9e6b8f2fed15478245ad533fc594a35c37 (diff) | |
download | ffmpeg-a7dbfcf6cb6ab8a8981d74332fd02fb90360d22f.tar.gz |
sgi: K&R formatting cosmetics
Diffstat (limited to 'libavcodec/sgienc.c')
-rw-r--r-- | libavcodec/sgienc.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libavcodec/sgienc.c b/libavcodec/sgienc.c index 902437f34d..ab1e36ff78 100644 --- a/libavcodec/sgienc.c +++ b/libavcodec/sgienc.c @@ -101,14 +101,14 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, memset(buf, 0, SGI_HEADER_SIZE); buf += 80; - /* colormap */ + /* colormap */ bytestream_put_be32(&buf, 0L); /* The rest of the 512 byte header is unused. */ buf += 404; offsettab = buf; - if (avctx->coder_type != FF_CODER_TYPE_RAW) { + if (avctx->coder_type != FF_CODER_TYPE_RAW) { /* Skip RLE offset table. */ buf += tablesize; lengthtab = buf; @@ -156,7 +156,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, } /* total length */ - pkt->size = buf - pkt->data; + pkt->size = buf - pkt->data; pkt->flags |= AV_PKT_FLAG_KEY; *got_packet = 1; @@ -170,14 +170,14 @@ static av_cold int encode_close(AVCodecContext *avctx) } AVCodec ff_sgi_encoder = { - .name = "sgi", - .long_name = NULL_IF_CONFIG_SMALL("SGI image"), - .type = AVMEDIA_TYPE_VIDEO, - .id = AV_CODEC_ID_SGI, - .init = encode_init, - .encode2 = encode_frame, - .close = encode_close, - .pix_fmts = (const enum AVPixelFormat[]){ + .name = "sgi", + .long_name = NULL_IF_CONFIG_SMALL("SGI image"), + .type = AVMEDIA_TYPE_VIDEO, + .id = AV_CODEC_ID_SGI, + .init = encode_init, + .encode2 = encode_frame, + .close = encode_close, + .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE }, }; |