diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-09 23:31:02 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-09 23:31:02 +0000 |
commit | 9701840bb539546bc0cfb1307b04655140851b04 (patch) | |
tree | 283d60d225a87c960c78d20975491802b3385797 /libavcodec/rv40.c | |
parent | 88855b51cdba35c2e7daf8351645d91cf85cb8af (diff) | |
download | ffmpeg-9701840bb539546bc0cfb1307b04655140851b04.tar.gz |
add FF_ prefix to all (frame)_TYPE usage
Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv40.c')
-rw-r--r-- | libavcodec/rv40.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv40.c b/libavcodec/rv40.c index f0e0d915f8..25258104fd 100644 --- a/libavcodec/rv40.c +++ b/libavcodec/rv40.c @@ -229,7 +229,7 @@ static int rv40_decode_mb_info(RV34DecContext *r) prev_type = i; } } - if(s->pict_type == P_TYPE){ + if(s->pict_type == FF_P_TYPE){ prev_type = block_num_to_ptype_vlc_num[prev_type]; q = get_vlc2(gb, ptype_vlc[prev_type].table, PTYPE_VLC_BITS, 1); if(q < PBTYPE_ESCAPE) |