~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Open Mash Cross Reference
mash/codec/tmndec/libh263.h

Component: ~ [ mash ] ~ [ apps ] ~ [ gsm ] ~ [ lib ] ~ [ otcl ] ~ [ srm ] ~ [ tcl8.3 ] ~ [ tclcl ] ~ [ tk8.3 ] ~ [ tutorials ] ~

  1 #ifdef __cplusplus
  2 extern "C" {
  3 #endif
  4 
  5 struct H263_STATE {
  6     int            width,height;
  7     unsigned char  **frame;
  8 
  9     /* internal state */
 10     int            framenum;
 11     int            conf;
 12     char           conf_data[512];
 13 };
 14 
 15 struct H263_STATE* h263_start();
 16 void h263_stop(struct H263_STATE *state);
 17 
 18 int h263_decode_frame(struct H263_STATE *state, char *packet);
 19 
 20 #ifdef __cplusplus
 21 }
 22 #endif
 23 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.