From 3dde147ff92764b907db49b5237df7fd26359444 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 30 Mar 2012 23:34:22 +0200 Subject: cosmetics: Consistently place static, inline and av_cold attributes/keywords. --- libavdevice/fbdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavdevice') diff --git a/libavdevice/fbdev.c b/libavdevice/fbdev.c index f1889ef79e..f79893a6d4 100644 --- a/libavdevice/fbdev.c +++ b/libavdevice/fbdev.c @@ -95,7 +95,7 @@ typedef struct { uint8_t *data; ///< framebuffer data } FBDevContext; -av_cold static int fbdev_read_header(AVFormatContext *avctx) +static av_cold int fbdev_read_header(AVFormatContext *avctx) { FBDevContext *fbdev = avctx->priv_data; AVStream *st = NULL; @@ -233,7 +233,7 @@ static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt) return fbdev->frame_size; } -av_cold static int fbdev_read_close(AVFormatContext *avctx) +static av_cold int fbdev_read_close(AVFormatContext *avctx) { FBDevContext *fbdev = avctx->priv_data; -- cgit v1.2.3