Changeset 13814


Ignore:
Timestamp:
01/28/12 15:36:41 (12 years ago)
Author:
nit
Message:

[titan] fix some compiler warn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/header.h

    r13802 r13814  
    11#ifndef HEADER_H
    22#define HEADER_H
    3 
    4 //videodev.h
    5 int videofastforward(struct dvbdev* node, int frames);
    6 
    7 //skin.h
    8 void fillrect(int posx, int posy, int width, int height, long color, int transparent);
    9 
    10 //play.h
    11 void playerffts(int speed);
    12 
    13 //subtitle.h
    14 void screensubtitle();
    15 
    16 //audiotrack.h
    17 void screenaudiotrack();
    183
    194//numinput.h
     
    249int ipkg_update(void);
    2510int ipkg_list(void);
     11int ipkg_install(const char* package);
     12int ipkg_remove(const char* package, int purge);
    2613char* ipk_listbox(char* defaultstr, char* str, char* skinname, char* skintitle, char* skinpath, int showpng);
    2714
     
    3623int audiopause(struct dvbdev* node);
    3724int audioplay(struct dvbdev* node);
     25int audioclearbuffer(struct dvbdev* node);
    3826
    3927//textinput.h
     
    9078int videofreeze(struct dvbdev* node);
    9179int videocontinue(struct dvbdev* node);
     80int videofastforward(struct dvbdev* node, int frames);
     81int videoclearbuffer(struct dvbdev* node);
     82int videogetpts(struct dvbdev* node, uint64_t* pts);
    9283
    9384// scan.h
     
    147138struct channel* createchannel(char* name, unsigned long transponderid, int providerid, int serviceid, int servicetype, int flag, int videocodec, int audiocodec, int videopid, int audiopid, int protect);
    148139void delchannelbytransponder(unsigned long transponderid);
     140struct channel* gettmpchannel();
     141int delchannel(int serviceid, int transponderid, int flag);
    149142
    150143//transponder.h
     
    172165
    173166// play.h
     167void playerffts(int speed);
    174168void screenplay(int startfolder, int flag);
    175169
     
    207201int dvbgetdate(time_t* time, int timeout);
    208202int dvbfindpmtpid(int fd, int16_t *pmtpid, int *serviceid);
     203int gettsinfo(int fd, unsigned long long* lenpts, unsigned long long* startpts, unsigned long long* endpts, unsigned long long* bitrate);
    209204
    210205//pin.h
     
    272267
    273268//skin.h
     269void fillrect(int posx, int posy, int width, int height, long color, int transparent);
    274270int setnodeattr(struct skin* node, struct skin* parent);
    275271void clearscreennolock(struct skin* node);
     
    327323struct clist* addconfiginttmp(char *key, int value);
    328324int writeconfigtmp();
     325int readconfig(const char *filename, struct clist** tmpconfig);
    329326
    330327//rc.h
     
    347344
    348345//global.h
     346void destroy();
    349347void htmldecode(char* to, char* from);
    350348void setosdtransparent(int value);
     
    429427
    430428//audiotrack.h
     429void screenaudiotrack();
    431430struct audiotrack* addaudiotrack(struct channel* chnode, char* langdesc, int pid, int audiocodec, struct audiotrack* last);
    432431void freeaudiotrack(struct channel* chnode);
    433432
    434433//subtitle.h
     434void screensubtitle();
    435435struct subtitle* addsubtitle(struct channel* chnode, int subtype, char* langdesc, int pid, int type, int id1, int id2, struct subtitle* last);
    436436void freesubtitle(struct channel* chnode);
Note: See TracChangeset for help on using the changeset viewer.