diff utils.c @ 4243:964903243e66 libavformat

remove ff_get_fourcc() and use AV_RL32() instead
author aurel
date Sat, 17 Jan 2009 12:21:01 +0000
parents 44f4dca12784
children a2a190f1bb9d
line wrap: on
line diff
--- a/utils.c	Sat Jan 17 11:13:33 2009 +0000
+++ b/utils.c	Sat Jan 17 12:21:01 2009 +0000
@@ -1946,8 +1946,8 @@
 static int tb_unreliable(AVCodecContext *c){
     if(   c->time_base.den >= 101L*c->time_base.num
        || c->time_base.den <    5L*c->time_base.num
-/*       || c->codec_tag == ff_get_fourcc("DIVX")
-       || c->codec_tag == ff_get_fourcc("XVID")*/
+/*       || c->codec_tag == AV_RL32("DIVX")
+       || c->codec_tag == AV_RL32("XVID")*/
        || c->codec_id == CODEC_ID_MPEG2VIDEO)
         return 1;
     return 0;