summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_onyx_int.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-04-15 22:59:37 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-04-15 22:59:37 -0700
commit617a367c54826718ed055cdc3f789660c08b55f9 (patch)
tree72d4aaf06b8cd4a1fe62d9605ffe6dd0801be35c /vp9/encoder/vp9_onyx_int.h
parent003376fc8b6930ba65ee5a35f2f579fdc3307465 (diff)
parentf3739f905226bfaa8e0e1eb7ce16b1adc86f3895 (diff)
downloadlibvpx-617a367c54826718ed055cdc3f789660c08b55f9.tar
libvpx-617a367c54826718ed055cdc3f789660c08b55f9.tar.gz
libvpx-617a367c54826718ed055cdc3f789660c08b55f9.tar.bz2
libvpx-617a367c54826718ed055cdc3f789660c08b55f9.zip
Merge "Consistent mode names."
Diffstat (limited to 'vp9/encoder/vp9_onyx_int.h')
-rw-r--r--vp9/encoder/vp9_onyx_int.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/vp9/encoder/vp9_onyx_int.h b/vp9/encoder/vp9_onyx_int.h
index 7a110ac4c..f85516170 100644
--- a/vp9/encoder/vp9_onyx_int.h
+++ b/vp9/encoder/vp9_onyx_int.h
@@ -142,33 +142,33 @@ typedef enum {
// Good Quality Fast Encoding. The encoder balances quality with the
// amount of time it takes to encode the output. (speed setting
// controls how fast)
- MODE_GOODQUALITY = 1,
+ ONE_PASS_GOOD = 1,
// One Pass - Best Quality. The encoder places priority on the
// quality of the output over encoding speed. The output is compressed
// at the highest possible quality. This option takes the longest
// amount of time to encode. (speed setting ignored)
- MODE_BESTQUALITY = 2,
+ ONE_PASS_BEST = 2,
// Two Pass - First Pass. The encoder generates a file of statistics
// for use in the second encoding pass. (speed setting controls how fast)
- MODE_FIRSTPASS = 3,
+ TWO_PASS_FIRST = 3,
// Two Pass - Second Pass. The encoder uses the statistics that were
// generated in the first encoding pass to create the compressed
// output. (speed setting controls how fast)
- MODE_SECONDPASS = 4,
+ TWO_PASS_SECOND_GOOD = 4,
// Two Pass - Second Pass Best. The encoder uses the statistics that
// were generated in the first encoding pass to create the compressed
// output using the highest possible quality, and taking a
// longer amount of time to encode. (speed setting ignored)
- MODE_SECONDPASS_BEST = 5,
+ TWO_PASS_SECOND_BEST = 5,
// Realtime/Live Encoding. This mode is optimized for realtime
// encoding (for example, capturing a television signal or feed from
// a live camera). (speed setting controls how fast)
- MODE_REALTIME = 6,
+ REALTIME = 6,
} MODE;
typedef enum {