Skip to content

Commit

Permalink
Add missing headers to make template files compile (more) standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
DonDiego committed Mar 26, 2014
1 parent e737358 commit aba70bb
Show file tree
Hide file tree
Showing 15 changed files with 50 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libavcodec/ac3enc_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@

#include <stdint.h>

#include "libavutil/attributes.h"
#include "libavutil/internal.h"
#include "internal.h"
#include "ac3enc.h"
#include "eac3enc.h"

/* prototypes for static functions in ac3enc_fixed.c and ac3enc_float.c */

Expand Down
2 changes: 2 additions & 0 deletions libavcodec/h264_mb_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "svq3.h"

#undef FUNC
#undef PIXEL_SHIFT

Expand Down
2 changes: 2 additions & 0 deletions libavcodec/h264_mc_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "h264.h"

#undef MCFUNC

#if CHROMA_IDC == 1
Expand Down
1 change: 1 addition & 0 deletions libavcodec/h264idct_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include "bit_depth_template.c"
#include "libavutil/common.h"
#include "h264.h"
#include "h264idct.h"

void FUNCC(ff_h264_idct_add)(uint8_t *_dst, int16_t *_block, int stride)
{
Expand Down
2 changes: 2 additions & 0 deletions libavcodec/hpel_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "libavutil/intreadwrite.h"

#include "pixels.h"

#include "bit_depth_template.c"
Expand Down
2 changes: 2 additions & 0 deletions libavcodec/motion_est_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* Motion estimation template.
*/

#include "mpegvideo.h"

//Let us hope gcc will remove the unused vars ...(gcc 3.2.2 seems to do it ...)
#define LOAD_COMMON\
uint32_t av_unused * const score_map= c->score_map;\
Expand Down
2 changes: 2 additions & 0 deletions libavcodec/simple_idct_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
written by Aaron Holtzman <[email protected]>)
*/

#include "simple_idct.h"

#include "bit_depth_template.c"

#undef W1
Expand Down
2 changes: 2 additions & 0 deletions libavcodec/videodsp_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <assert.h>

#include "bit_depth_template.c"

static void FUNC(ff_emulated_edge_mc)(uint8_t *buf, const uint8_t *src,
Expand Down
6 changes: 6 additions & 0 deletions libavcodec/x86/dsputil_qns_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <assert.h>
#include <stdint.h>

#include "libavutil/common.h"
#include "libavutil/x86/asm.h"

#include "inline_asm.h"

#define MAX_ABS (512 >> (SCALE_OFFSET>0 ? SCALE_OFFSET : 0))
Expand Down
3 changes: 3 additions & 0 deletions libavcodec/x86/hpeldsp_rnd_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <stddef.h>
#include <stdint.h>

// put_pixels
static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
{
Expand Down
6 changes: 6 additions & 0 deletions libavcodec/x86/mpegvideoenc_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <stdint.h>

#include "libavutil/internal.h"
#include "libavutil/x86/asm.h"
#include "libavcodec/mpegvideo.h"

#undef MMREG_WIDTH
#undef MM
#undef MOVQ
Expand Down
6 changes: 6 additions & 0 deletions libavresample/resample_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <math.h>
#include <stdint.h>

#include "libavutil/common.h"
#include "internal.h"

#if defined(CONFIG_RESAMPLE_DBL)
#define SET_TYPE(func) func ## _dbl
#define FELEM double
Expand Down
2 changes: 2 additions & 0 deletions libswscale/x86/rgb2rgb_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
*/

#include <stddef.h>
#include <stdint.h>

#include "libavutil/attributes.h"
#include "libavutil/x86/asm.h"

#undef PREFETCH
#undef MOVNTQ
Expand Down
5 changes: 5 additions & 0 deletions libswscale/x86/swscale_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <stdint.h>

#include "libavutil/x86/asm.h"
#include "libswscale/swscale_internal.h"

#undef REAL_MOVNTQ
#undef MOVNTQ
#undef PREFETCH
Expand Down
5 changes: 5 additions & 0 deletions libswscale/x86/yuv2rgb_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <stdint.h>

#include "libavutil/x86/asm.h"
#include "libswscale/swscale_internal.h"

#undef MOVNTQ
#undef EMMS
#undef SFENCE
Expand Down

0 comments on commit aba70bb

Please sign in to comment.