diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-09 10:14:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-12-09 08:41:20 +0100 |
commit | afa21a12bf084f905187615706b0a8d92bc98661 (patch) | |
tree | 01d0e07064dbaa0f9699a70382f59bb4c8693d27 /libavcodec/pnm.h | |
parent | e2274aa555f023e4f4e4819bf29b2d7e0adec7d5 (diff) | |
download | ffmpeg-afa21a12bf084f905187615706b0a8d92bc98661.tar.gz |
p*menc: use the AVFrame API properly.
Diffstat (limited to 'libavcodec/pnm.h')
-rw-r--r-- | libavcodec/pnm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/pnm.h b/libavcodec/pnm.h index ec5ebdb4fe..5fc6513ed7 100644 --- a/libavcodec/pnm.h +++ b/libavcodec/pnm.h @@ -28,12 +28,10 @@ typedef struct PNMContext { uint8_t *bytestream; uint8_t *bytestream_start; 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); -int ff_pnm_init(AVCodecContext *avctx); #endif /* AVCODEC_PNM_H */ |