summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2015-06-27 09:28:55 +0300
committerRachad Alao <rachad@google.com>2015-07-31 01:58:14 +0000
commitc2d3b25ac4c42ba4827ed0c77a52a6a85cdca435 (patch)
treebba18dcc1f384b15d458d48d80bac2bdd9d70393
parenta7d36c184562cc15b2d665ff25c485fefdcfbabd (diff)
downloadframeworks_av-c2d3b25ac4c42ba4827ed0c77a52a6a85cdca435.zip
frameworks_av-c2d3b25ac4c42ba4827ed0c77a52a6a85cdca435.tar.gz
frameworks_av-c2d3b25ac4c42ba4827ed0c77a52a6a85cdca435.tar.bz2
SoftAVCEnc: Stop using the u4_strd field in the set dimensions struct
Since 90a3904fd3 in external/libavc, this field isn't used any longer. After SoftAVCEnc stops using it, it can be removed from the library altogether. Bug: 22860270 Change-Id: I0e0fcab6740ef420df7776ede11b35aa1a383a48
-rw-r--r--media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp b/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp
index 9ee3518..26568ab 100644
--- a/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp
+++ b/media/libstagefright/codecs/avcenc/SoftAVCEnc.cpp
@@ -229,7 +229,6 @@ OMX_ERRORTYPE SoftAVC::setDimensions() {
s_dimensions_ip.e_sub_cmd = IVE_CMD_CTL_SET_DIMENSIONS;
s_dimensions_ip.u4_ht = mHeight;
s_dimensions_ip.u4_wd = mWidth;
- s_dimensions_ip.u4_strd = mStride;
s_dimensions_ip.u4_timestamp_high = -1;
s_dimensions_ip.u4_timestamp_low = -1;