diff options
| author | Martin Storsjo <martin@martin.st> | 2015-07-01 10:54:19 +0300 | 
|---|---|---|
| committer | Marco Nelissen <marcone@google.com> | 2015-07-31 18:49:03 +0000 | 
| commit | 7406bc75c086534d574bee1e608de863fb276170 (patch) | |
| tree | e4a0743f6c58184d4c1f795f1af6aa5512479ea8 | |
| parent | 39a535d46df5146f6dc64049092a039cc8044101 (diff) | |
| download | frameworks_av-7406bc75c086534d574bee1e608de863fb276170.zip frameworks_av-7406bc75c086534d574bee1e608de863fb276170.tar.gz frameworks_av-7406bc75c086534d574bee1e608de863fb276170.tar.bz2  | |
Don't include ithread.h in decoder omx wrappers
ithread.h probably should be considered an internal, private header.
These omx wrappers don't use anything from this header anyway, so
stop including it.
Bug: 22860270
Change-Id: I5f14f3eae86c6b5f6ffa193d4b97f483d9be6fb0
| -rw-r--r-- | media/libstagefright/codecs/avcdec/SoftAVCDec.cpp | 1 | ||||
| -rw-r--r-- | media/libstagefright/codecs/hevcdec/SoftHEVC.cpp | 1 | ||||
| -rw-r--r-- | media/libstagefright/codecs/mpeg2dec/SoftMPEG2.cpp | 1 | 
3 files changed, 0 insertions, 3 deletions
diff --git a/media/libstagefright/codecs/avcdec/SoftAVCDec.cpp b/media/libstagefright/codecs/avcdec/SoftAVCDec.cpp index 8e7a277..e083315 100644 --- a/media/libstagefright/codecs/avcdec/SoftAVCDec.cpp +++ b/media/libstagefright/codecs/avcdec/SoftAVCDec.cpp @@ -21,7 +21,6 @@  #include "ih264_typedefs.h"  #include "iv.h"  #include "ivd.h" -#include "ithread.h"  #include "ih264d.h"  #include "SoftAVCDec.h" diff --git a/media/libstagefright/codecs/hevcdec/SoftHEVC.cpp b/media/libstagefright/codecs/hevcdec/SoftHEVC.cpp index 1db350f..4b2ec1c 100644 --- a/media/libstagefright/codecs/hevcdec/SoftHEVC.cpp +++ b/media/libstagefright/codecs/hevcdec/SoftHEVC.cpp @@ -21,7 +21,6 @@  #include "ihevc_typedefs.h"  #include "iv.h"  #include "ivd.h" -#include "ithread.h"  #include "ihevcd_cxa.h"  #include "SoftHEVC.h" diff --git a/media/libstagefright/codecs/mpeg2dec/SoftMPEG2.cpp b/media/libstagefright/codecs/mpeg2dec/SoftMPEG2.cpp index 78b3ab4..32e5da7 100644 --- a/media/libstagefright/codecs/mpeg2dec/SoftMPEG2.cpp +++ b/media/libstagefright/codecs/mpeg2dec/SoftMPEG2.cpp @@ -21,7 +21,6 @@  #include "iv_datatypedef.h"  #include "iv.h"  #include "ivd.h" -#include "ithread.h"  #include "impeg2d.h"  #include "SoftMPEG2.h"  | 
