summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2012-11-15 09:32:05 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-11-15 09:32:06 -0800
commit8248ddb8244ee602e6304857c0f10c306f9bca1b (patch)
tree68a32530303f8fc3a42204c41ca265bcbb59c93d
parent520a9af9438c29b24e328dd2b7a287c7a96a4e6b (diff)
parenta78b111d5660cd22cef8f3f11925d62916463f0e (diff)
downloadframeworks_av-8248ddb8244ee602e6304857c0f10c306f9bca1b.zip
frameworks_av-8248ddb8244ee602e6304857c0f10c306f9bca1b.tar.gz
frameworks_av-8248ddb8244ee602e6304857c0f10c306f9bca1b.tar.bz2
Merge "Stagefright command line tool: input file name last"
-rw-r--r--cmds/stagefright/stagefright.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/stagefright/stagefright.cpp b/cmds/stagefright/stagefright.cpp
index b92a8a0..1e0e7f8 100644
--- a/cmds/stagefright/stagefright.cpp
+++ b/cmds/stagefright/stagefright.cpp
@@ -589,7 +589,7 @@ static void performSeekTest(const sp<MediaSource> &source) {
}
static void usage(const char *me) {
- fprintf(stderr, "usage: %s\n", me);
+ fprintf(stderr, "usage: %s [options] [input_filename]\n", me);
fprintf(stderr, " -h(elp)\n");
fprintf(stderr, " -a(udio)\n");
fprintf(stderr, " -n repetitions\n");
@@ -607,8 +607,8 @@ static void usage(const char *me) {
"(video only)\n");
fprintf(stderr, " -S allocate buffers from a surface\n");
fprintf(stderr, " -T allocate buffers from a surface texture\n");
- fprintf(stderr, " -d(ump) filename (raw stream data to a file)\n");
- fprintf(stderr, " -D(ump) filename (decoded PCM data to a file)\n");
+ fprintf(stderr, " -d(ump) output_filename (raw stream data to a file)\n");
+ fprintf(stderr, " -D(ump) output_filename (decoded PCM data to a file)\n");
}
static void dumpCodecProfiles(const sp<IOMX>& omx, bool queryDecoders) {