]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ptx.c
Cosmetics: reindent tables
[ffmpeg] / libavcodec / ptx.c
index 22bb4617817bc35ff99fe6ecfaf2d537a474d49c..79424b9c42cf0a20718ec98f0cefac9ce179655f 100644 (file)
@@ -25,7 +25,7 @@ typedef struct PTXContext {
     AVFrame picture;
 } PTXContext;
 
-static int ptx_init(AVCodecContext *avctx) {
+static av_cold int ptx_init(AVCodecContext *avctx) {
     PTXContext *s = avctx->priv_data;
 
     avcodec_get_frame_defaults(&s->picture);
@@ -94,7 +94,7 @@ static int ptx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
     return offset + w*h*bytes_per_pixel;
 }
 
-static int ptx_end(AVCodecContext *avctx) {
+static av_cold int ptx_end(AVCodecContext *avctx) {
     PTXContext *s = avctx->priv_data;
 
     if(s->picture.data[0])
@@ -113,5 +113,6 @@ AVCodec ptx_decoder = {
     ptx_end,
     ptx_decode_frame,
     0,
-    NULL
+    NULL,
+    .long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"),
 };