diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-27 18:37:40 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 05:50:28 -0700 |
commit | 9103185bd116930f90b847090e66a64fa9971ce2 (patch) | |
tree | 760c94f6812ed0a1c966243880673708d00f0f65 /libavcodec/dsputil.h | |
parent | 49676eb7301e775d08bdbba5380159b106ee258f (diff) | |
download | ffmpeg-9103185bd116930f90b847090e66a64fa9971ce2.tar.gz |
dsputil: Drop ff_check_alignment() function
The function is supposed to confirm that the compiler provided enough
alignment, but in practice it is only run in certain code paths and
insufficient alignment problems are restricted to legacy compilers.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index b914fb1bdb..46aa8aa8d6 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -293,8 +293,6 @@ typedef struct DSPContext { void ff_dsputil_static_init(void); void ff_dsputil_init(DSPContext* p, AVCodecContext *avctx); -int ff_check_alignment(void); - void ff_set_cmp(DSPContext* c, me_cmp_func *cmp, int type); void ff_dsputil_init_arm(DSPContext* c, AVCodecContext *avctx); |