Mercurial > pt1.oyama
view recpt1/decoder.h @ 56:521d796003b2
small build fixes
- added install rule to arib25 top level makefile
- suppress warning in compilation of arib_std_b25.c
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Sun, 13 Sep 2009 11:48:40 +0900 |
parents | b63f5c100e5a |
children | b6607f6e2851 |
line wrap: on
line source
#ifndef _DECODER_H_ #define _DECODER_H_ #include <arib25/arib_std_b25.h> #include <arib25/b_cas_card.h> typedef struct decoder { ARIB_STD_B25 *b25; B_CAS_CARD *bcas; } decoder; typedef struct decoder_options { int round; int strip; int emm; } decoder_options; /* prototypes */ decoder *b25_startup(decoder_options *opt); int b25_shutdown(decoder *dec); int b25_decode(decoder *dec, ARIB_STD_B25_BUFFER *sbuf, ARIB_STD_B25_BUFFER *dbuf); int b25_finish(decoder *dec, ARIB_STD_B25_BUFFER *sbuf, ARIB_STD_B25_BUFFER *dbuf); #endif