comparison idcinvideo.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 7dd2a45249a9
children
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
75 } IdcinContext; 75 } IdcinContext;
76 76
77 /* 77 /*
78 * Find the lowest probability node in a Huffman table, and mark it as 78 * Find the lowest probability node in a Huffman table, and mark it as
79 * being assigned to a higher probability. 79 * being assigned to a higher probability.
80 * Returns the node index of the lowest unused node, or -1 if all nodes 80 * @return the node index of the lowest unused node, or -1 if all nodes
81 * are used. 81 * are used.
82 */ 82 */
83 static int huff_smallest_node(hnode *hnodes, int num_hnodes) { 83 static int huff_smallest_node(hnode *hnodes, int num_hnodes) {
84 int i; 84 int i;
85 int best, best_node; 85 int best, best_node;