00001
00002
00003 #ifndef _MUXSTUFF_H_
00004 #define _MUXSTUFF_H_
00005
00006 #include "mux.h"
00007
00008
00009
00010
00011 static int twotothe(int n);
00012
00013
00014
00015
00016 int **make_mt_bytes(mux_table_entry *mt,
00017 int mt_size,
00018 int num_channels,
00019 int info_bytes);
00020
00021
00022
00023
00024
00025 float **make_mt_ratios(int **mt_bytes,
00026 int mt_size,
00027 int num_channels,
00028 int info_bytes);
00029
00030
00031
00032
00033 mux_parameters *new_mux_parameters(char *name);
00034
00035
00036
00037
00038
00039
00040 byte *construct_header(int mc, int pm, bch_type code, int level);
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 byte *construct_header_level2(int mc, int pm, int mpl);
00052
00053
00054
00055
00056
00057
00058 int deconstruct_header(byte *header,int *mc,int *pm,bch_type code,int level);
00059
00060
00061
00062
00063
00064
00065 void deconstruct_header_level2(byte *header,int *mc,int *pm,int *mpl);
00066
00067
00068
00069
00070
00071 byte *construct_mpl(int mpl, bch_type code);
00072
00073
00074
00075
00076 int deconstruct_mpl(byte *mplf, int *mpl, bch_type code);
00077
00078
00079
00080
00081
00082 void swapbits(bytes *b, int a1, int a2);
00083
00084
00085
00086
00087 void swapbytes(bytes *b, int a1, int a2);
00088
00089
00090
00091
00092 void interleave_header(bytes *mux_pdu, int sync_bytes, int header_bytes, int mode);
00093
00094
00095
00096
00097
00098
00099
00100 int mux_byte_source(mux_table_entry *mte, int x);
00101
00102
00103
00104
00105
00106
00107
00108 #endif