diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-07-28 21:16:07 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-07-28 22:27:36 +0000 |
commit | a5155294e571bf1861627c7e9c3f4c32c5df32dc (patch) | |
tree | 1ee96fc5eca32651cdb8fe5a6dba1ccae1bd1cf6 /libavcodec/pnm.h | |
parent | 329221eee7d643c9b417043dadba856a313c9817 (diff) | |
download | ffmpeg-a5155294e571bf1861627c7e9c3f4c32c5df32dc.tar.gz |
pnm: do not set avctx->coded_frame
Signed-off-by: Paul B Mahol <onemda@gmail.com>
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 92edf8dfef..5bc0aad29f 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 */ |