summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2010-11-15 12:13:08 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-11-15 12:13:08 -0800
commitc2db5a15b819368c2c19099cc912c095a45e6bac (patch)
tree3a3c4e733e4d07d5afee7e21c025be6773d403f2
parentf9c2d3381e0bb174194347b927ef2b36329f3a54 (diff)
parent225f4d2b175794100884b2ca5cecec1909fe9243 (diff)
downloadframeworks_av-c2db5a15b819368c2c19099cc912c095a45e6bac.zip
frameworks_av-c2db5a15b819368c2c19099cc912c095a45e6bac.tar.gz
frameworks_av-c2db5a15b819368c2c19099cc912c095a45e6bac.tar.bz2
Merge "Switch to use kKeyFrameRate for recordvideo utility"
-rw-r--r--cmds/stagefright/recordvideo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/stagefright/recordvideo.cpp b/cmds/stagefright/recordvideo.cpp
index f8eb514..1264215 100644
--- a/cmds/stagefright/recordvideo.cpp
+++ b/cmds/stagefright/recordvideo.cpp
@@ -264,7 +264,7 @@ int main(int argc, char **argv) {
}
enc_meta->setInt32(kKeyWidth, width);
enc_meta->setInt32(kKeyHeight, height);
- enc_meta->setInt32(kKeySampleRate, frameRateFps);
+ enc_meta->setInt32(kKeyFrameRate, frameRateFps);
enc_meta->setInt32(kKeyBitRate, bitRateBps);
enc_meta->setInt32(kKeyStride, width);
enc_meta->setInt32(kKeySliceHeight, height);