summaryrefslogtreecommitdiff
path: root/libavcodec/pnm.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-10-27 17:15:05 +0000
committerDiego Biurrun <diego@biurrun.de>2009-10-27 17:15:05 +0000
commit8767a009a1dc27b07a2d3dca8679748e06fcc7e1 (patch)
treecf75e435ca405b317738f669fcbfb16d90f365ed /libavcodec/pnm.h
parentd3067047e71e0cc975fb85be5a0f5c3b50ed6969 (diff)
Move PNM init/end functions to the PNM common code.
This is done in preparation for the PNM encoder/decoder split. Originally committed as revision 20382 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pnm.h')
-rw-r--r--libavcodec/pnm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/pnm.h b/libavcodec/pnm.h
index ef0cd8676e..163cad0815 100644
--- a/libavcodec/pnm.h
+++ b/libavcodec/pnm.h
@@ -33,5 +33,7 @@ typedef struct PNMContext {
} 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 */