qdrw: cosmetics, reformat

This commit is contained in:
Anton Khirnov 2012-11-19 10:40:03 +01:00
parent 688b132b88
commit 80cf2ebc59

View File

@ -146,15 +146,15 @@ static int decode_frame(AVCodecContext *avctx,
return buf_size;
}
static av_cold int decode_init(AVCodecContext *avctx){
// QdrawContext * const a = avctx->priv_data;
static av_cold int decode_init(AVCodecContext *avctx)
{
avctx->pix_fmt= AV_PIX_FMT_PAL8;
return 0;
}
static av_cold int decode_end(AVCodecContext *avctx){
static av_cold int decode_end(AVCodecContext *avctx)
{
QdrawContext * const a = avctx->priv_data;
AVFrame *pic = &a->pic;