summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/avcenc
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2015-04-28 19:26:38 +0530
committerLajos Molnar <lajos@google.com>2015-05-05 10:39:45 -0700
commitdf0ebf5f9ea5c16aaec4752bdf06af101cc541b8 (patch)
treed919f562ae6ce0e731b3453333c563c04715bc3a /media/libstagefright/codecs/avcenc
parenta627e3df129c4a502368ee861b1e5831ecae174a (diff)
downloadframeworks_av-df0ebf5f9ea5c16aaec4752bdf06af101cc541b8.zip
frameworks_av-df0ebf5f9ea5c16aaec4752bdf06af101cc541b8.tar.gz
frameworks_av-df0ebf5f9ea5c16aaec4752bdf06af101cc541b8.tar.bz2
SoftAVCEnc: Removed alignment requirement on input width
Change-Id: Id6e1abf588420beec6f1af4394b69b2e53487299
Diffstat (limited to 'media/libstagefright/codecs/avcenc')
-rwxr-xr-x[-rw-r--r--]media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp b/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp
index 06b2163..6afac74 100644..100755
--- a/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp
+++ b/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp
@@ -625,7 +625,7 @@ OMX_ERRORTYPE SoftAVC::initEncoder() {
return errType;
}
- mStride = ALIGN16(mWidth);
+ mStride = mWidth;
if (mInputDataIsMeta) {
if (mConversionBuffer) {