diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-01-17 12:21:01 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-01-17 12:21:01 +0000 |
commit | 2bb6eba21d1843d67127be031aab7576dbe4c200 (patch) | |
tree | 58da36fa398f13d1c6916e14af466f28ea735ce4 /libavformat/utils.c | |
parent | 9ce6c1387988bf3cdb631f3844e99a0c9bea43f2 (diff) | |
download | ffmpeg-2bb6eba21d1843d67127be031aab7576dbe4c200.tar.gz |
remove ff_get_fourcc() and use AV_RL32() instead
Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 1778bba973..ce35fbe8a3 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1946,8 +1946,8 @@ static int get_std_framerate(int i){ 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; |