comparison tree.c @ 873:4d9ad0ed07d0 libavutil

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents ccac021c9a8e
children
comparison
equal deleted inserted replaced
872:9d32a031ab0b 873:4d9ad0ed07d0
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #include "common.h"
22 #include "log.h" 21 #include "log.h"
23 #include "tree.h" 22 #include "tree.h"
24 23
25 typedef struct AVTreeNode{ 24 typedef struct AVTreeNode{
26 struct AVTreeNode *child[2]; 25 struct AVTreeNode *child[2];