Lines Matching refs:to
18 * License along with FFmpeg; if not, write to the Free Software
31 * @param a First PTable to compare
32 * @param b Second PTable to compare
45 * @param a First HuffTable to compare
46 * @param b Second HuffTable to compare
60 * 2. add 1 entry to list(i) for each symbol we have and give each a score equal to the probability of the respective symbol
66 * 8. the length of the huffman code for symbol s will be equal to the number of times the symbol occurs in the select elements
67 * Go to guru.multimedia.cx/small-tasks-for-ffmpeg/ for more details
79 PackageMergerList list_a, list_b, *to = &list_a, *from = &list_b, *temp;
89 to->nitems = 0;
91 to->item_idx[0] = 0;
96 to->nitems = 0;
97 to->item_idx[0] = 0;
106 to->nitems++;
107 to->item_idx[to->nitems] = to->item_idx[to->nitems - 1];
112 to->items[to->item_idx[to->nitems]++] = prob_table[i].value;
113 to->probability[to->nitems - 1] = prob_table[i].prob;
117 to->items[to->item_idx[to->nitems]++] = from->items[k];
119 to->probability[to->nitems - 1] =
124 temp = to;
125 to = from;
133 // we don't want to return the 256 bit count (it was just in here to prevent
153 * @param s input to encode