~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to libaf/af_format.h

  • Committer: William Grant
  • Date: 2007-02-03 03:16:07 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: william.grant@ubuntu.org.au-20070203031607-08gc2ompbz6spt9i
Update to 1.0rc1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
#define AF_FORMAT_FLOAT_NE AF_FORMAT_FLOAT_LE
85
85
#endif
86
86
 
87
 
extern int af_str2fmt(char *str);
88
 
extern int af_str2fmt_short(char *str);
 
87
extern int af_str2fmt(const char *str);
 
88
extern int af_str2fmt_short(const char *str);
89
89
extern int af_fmt2bits(int format);
90
90
extern int af_bits2fmt(int bits);
91
91
extern char* af_fmt2str(int format, char* str, int size);
92
 
extern char* af_fmt2str_short(int format);
 
92
extern const char* af_fmt2str_short(int format);
93
93
 
94
94
#endif /* __af_format_h__ */