diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-06-29 13:27:36 -0700 |
---|---|---|
committer | Jason Garrett-Glaser <jason@x264.com> | 2011-07-03 15:05:55 -0700 |
commit | 3b7ebeb4d52a25c7e1038ae90c6c19b0d6f11877 (patch) | |
tree | 2582b35da48add54c1087c62014a36478fe114a9 /libavcodec/h264_cavlc.c | |
parent | cb5469462d427ea38625e255306f07b37d75280f (diff) | |
download | ffmpeg-3b7ebeb4d52a25c7e1038ae90c6c19b0d6f11877.tar.gz |
H.264: faster write_back_*
Avoid aliasing, unroll loops, and inline more functions.
Diffstat (limited to 'libavcodec/h264_cavlc.c')
-rw-r--r-- | libavcodec/h264_cavlc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index 497166b423..90c411002e 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -731,7 +731,7 @@ decode_intra_mb: else h->intra4x4_pred_mode_cache[ scan8[i] ] = mode; } - ff_h264_write_back_intra_pred_mode(h); + write_back_intra_pred_mode(h); if( ff_h264_check_intra4x4_pred_mode(h) < 0) return -1; }else{ |