Skip to content

Commit

Permalink
use libmpeg2/mmx.h header instead of the obsolete FFmpeg/libavcodec
Browse files Browse the repository at this point in the history
The functions use are identical in both headers
  • Loading branch information
jyavenard committed May 22, 2012
1 parent 4b4209f commit 133538c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythmpeg2/cpu_state.c
Expand Up @@ -30,7 +30,7 @@
#include "attributes.h"
#include "mpeg2_internal.h"
#if ARCH_X86
#include "libavcodec/x86/mmx.h"
#include "mmx.h"
#endif

void (* mpeg2_cpu_state_save) (cpu_state_t * state) = NULL;
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythmpeg2/idct_mmx.c
Expand Up @@ -30,7 +30,7 @@
#include "mpeg2.h"
#include "attributes.h"
#include "mpeg2_internal.h"
#include "libavcodec/x86/mmx.h"
#include "mmx.h"

#define ROW_SHIFT 15
#define COL_SHIFT 6
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythmpeg2/motion_comp_mmx.c
Expand Up @@ -30,7 +30,7 @@
#include "mpeg2.h"
#include "attributes.h"
#include "mpeg2_internal.h"
#include "libavcodec/x86/mmx.h"
#include "mmx.h"

#define CPU_MMXEXT 0
#define CPU_3DNOW 1
Expand Down

0 comments on commit 133538c

Please sign in to comment.