]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/pnm.h
cosmetics: Switch Doxygen comments to JavaDoc style.
[ffmpeg] / libavcodec / pnm.h
index 8aa42763738e25d2de05c7bc7de1e9262bbdc521..ac4b1084fb878f10109b9fd33b92f283a3e50464 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * PNM image format
- * Copyright (c) 2002, 2003 Fabrice Bellard.
+ * Copyright (c) 2002, 2003 Fabrice Bellard
  *
  * This file is part of FFmpeg.
  *
@@ -30,8 +30,11 @@ typedef struct PNMContext {
     uint8_t *bytestream_end;
     AVFrame picture;
     int maxval;                 ///< maximum value of a pixel
+    int type;
 } PNMContext;
 
 int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s);
+av_cold int ff_pnm_end(AVCodecContext *avctx);
+av_cold int ff_pnm_init(AVCodecContext *avctx);
 
 #endif /* AVCODEC_PNM_H */