summaryrefslogtreecommitdiff
path: root/libavdevice/fbdev.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-03-30 23:34:22 +0200
committerDiego Biurrun <diego@biurrun.de>2012-04-04 14:54:13 +0200
commit3dde147ff92764b907db49b5237df7fd26359444 (patch)
tree0dc29e3d99bbed3ef427cc4892b8cc70594df959 /libavdevice/fbdev.c
parentd4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff)
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavdevice/fbdev.c')
-rw-r--r--libavdevice/fbdev.c4
1 files changed, 2 insertions, 2 deletions
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;