diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-21 13:13:21 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-01 01:25:18 -0700 |
commit | a786c8259dafeca9744252230b5d78f67810770c (patch) | |
tree | aade39c2a8bc84ea95306d7a8117d4e05c908139 /libavcodec/xvididct.h | |
parent | 03c9f357a4c2307a7913cea2cbf0ba817e80beb6 (diff) | |
download | ffmpeg-a786c8259dafeca9744252230b5d78f67810770c.tar.gz |
idct: Split off Xvid IDCT
The Xvid IDCT is only required to decode some Xvid-encoded MPEG-4 files,
so there is no point in having it as an unconditional part of idctdsp.
Diffstat (limited to 'libavcodec/xvididct.h')
-rw-r--r-- | libavcodec/xvididct.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libavcodec/xvididct.h b/libavcodec/xvididct.h new file mode 100644 index 0000000000..a688bc8c0e --- /dev/null +++ b/libavcodec/xvididct.h @@ -0,0 +1,29 @@ +/* + * This file is part of Libav. + * + * Libav is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * Libav is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with Libav; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVCODEC_XVIDIDCT_H +#define AVCODEC_XVIDIDCT_H + +#include "avcodec.h" +#include "idctdsp.h" + +void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx); + +void ff_xvididct_init_x86(IDCTDSPContext *c); + +#endif /* AVCODEC_XVIDIDCT_H */ |