]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/sunrast.c
Silence some ICC warnings. Patch by Vitor Sessak.
[ffmpeg] / libavcodec / sunrast.c
index 7e71f21ef0c33b467942011438a5cb5e226e2bc8..c8f021f85007aa31fd2232c8d28bcc60a7cefde1 100644 (file)
@@ -32,7 +32,7 @@ typedef struct SUNRASTContext {
     AVFrame picture;
 } SUNRASTContext;
 
-static int sunrast_init(AVCodecContext *avctx) {
+static av_cold int sunrast_init(AVCodecContext *avctx) {
     SUNRASTContext *s = avctx->priv_data;
 
     avcodec_get_frame_defaults(&s->picture);
@@ -172,7 +172,7 @@ static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
     return buf - bufstart;
 }
 
-static int sunrast_end(AVCodecContext *avctx) {
+static av_cold int sunrast_end(AVCodecContext *avctx) {
     SUNRASTContext *s = avctx->priv_data;
 
     if(s->picture.data[0])
@@ -191,5 +191,6 @@ AVCodec sunrast_decoder = {
     sunrast_end,
     sunrast_decode_frame,
     0,
-    NULL
+    NULL,
+    .long_name = NULL_IF_CONFIG_SMALL("Sun Rasterfile image"),
 };