Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2021, The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | //#define LOG_NDEBUG 0 |
| 18 | #define LOG_TAG "CodecSeeding" |
| 19 | #include <utils/Log.h> |
| 20 | |
| 21 | #include <string> |
| 22 | |
| 23 | #include <media/formatshaper/CodecProperties.h> |
| 24 | |
| 25 | namespace android { |
| 26 | namespace mediaformatshaper { |
| 27 | |
| 28 | /* |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 29 | * a block of pre-loaded tunings for codecs. |
| 30 | * |
| 31 | * things the library seeds into the codecproperties based |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 32 | * on the mediaType. |
| 33 | * XXX: parsing from a file is likely better than embedding in code. |
| 34 | */ |
| 35 | typedef struct { |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 36 | bool overrideable; |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 37 | const char *key; |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 38 | const char *value; |
| 39 | } preloadTuning_t; |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 40 | |
| 41 | typedef struct { |
| 42 | const char *mediaType; |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 43 | preloadTuning_t *features; |
| 44 | } preloadTunings_t; |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * 240 = 2.4 bits per pixel-per-second == 5mbps@1080, 2.3mbps@720p, which is about where |
| 48 | * we want our initial floor for now. |
| 49 | */ |
| 50 | |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 51 | static preloadTuning_t featuresAvc[] = { |
| 52 | {true, "vq-target-bpp", "2.45"}, |
Ray Essick | 244aaa5 | 2021-04-05 14:47:02 -0700 | [diff] [blame] | 53 | {true, "vq-target-bpp-1080p", "2.40"}, |
| 54 | {true, "vq-target-bpp-540p", "2.60"}, |
| 55 | {true, "vq-target-bpp-480p", "3.00"}, |
| 56 | {true, "vq-target-qpmax", "40"}, |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 57 | {true, nullptr, 0} |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 60 | static preloadTuning_t featuresHevc[] = { |
| 61 | {true, "vq-target-bpp", "2.30"}, |
Ray Essick | 244aaa5 | 2021-04-05 14:47:02 -0700 | [diff] [blame] | 62 | {true, "vq-target-qpmax", "40"}, // nop, since hevc codecs don't declare qp support |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 63 | {true, nullptr, 0} |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 66 | static preloadTuning_t featuresGenericVideo[] = { |
| 67 | {true, "vq-target-bpp", "2.40"}, |
| 68 | {true, nullptr, 0} |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 69 | }; |
| 70 | |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 71 | static preloadTunings_t preloadTunings[] = { |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 72 | { "video/avc", featuresAvc}, |
| 73 | { "video/hevc", &featuresHevc[0]}, |
| 74 | |
| 75 | // wildcard for any video format not already captured |
| 76 | { "video/*", &featuresGenericVideo[0]}, |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 77 | |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 78 | { nullptr, nullptr} |
| 79 | }; |
| 80 | |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 81 | void CodecProperties::addMediaDefaults(bool overrideable) { |
| 82 | ALOGD("Seed: codec %s, mediatype %s, overrideable %d", |
| 83 | mName.c_str(), mMediaType.c_str(), overrideable); |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 84 | |
| 85 | // load me up with initial configuration data |
| 86 | int count = 0; |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 87 | for (int i = 0; ; i++) { |
| 88 | preloadTunings_t *p = &preloadTunings[i]; |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 89 | if (p->mediaType == nullptr) { |
| 90 | break; |
| 91 | } |
| 92 | bool found = false; |
| 93 | if (strcmp(p->mediaType, mMediaType.c_str()) == 0) { |
| 94 | found = true; |
| 95 | } |
| 96 | const char *r; |
| 97 | if (!found && (r = strchr(p->mediaType, '*')) != NULL) { |
| 98 | // wildcard; check the prefix |
| 99 | size_t len = r - p->mediaType; |
| 100 | if (strncmp(p->mediaType, mMediaType.c_str(), len) == 0) { |
| 101 | found = true; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | if (!found) { |
| 106 | continue; |
| 107 | } |
| 108 | ALOGV("seeding from mediaType '%s'", p->mediaType); |
| 109 | |
| 110 | // walk through, filling things |
| 111 | if (p->features != nullptr) { |
| 112 | for (int j=0;; j++) { |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 113 | preloadTuning_t *q = &p->features[j]; |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 114 | if (q->key == nullptr) { |
| 115 | break; |
| 116 | } |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 117 | if (q->overrideable != overrideable) { |
| 118 | continue; |
| 119 | } |
| 120 | setTuningValue(q->key, q->value); |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 121 | count++; |
| 122 | } |
| 123 | break; |
| 124 | } |
| 125 | } |
| 126 | ALOGV("loaded %d preset values", count); |
| 127 | } |
| 128 | |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 129 | // a chance, as we create the codec to inject any default behaviors we want. |
| 130 | // XXX: consider whether we need pre/post or just post. it affects what can be |
| 131 | // overridden by way of the codec XML |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 132 | // |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 133 | void CodecProperties::Seed() { |
| 134 | ALOGV("Seed: for codec %s, mediatype %s", mName.c_str(), mMediaType.c_str()); |
| 135 | addMediaDefaults(true); |
| 136 | } |
| 137 | |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 138 | void CodecProperties::Finish() { |
| 139 | ALOGV("Finish: for codec %s, mediatype %s", mName.c_str(), mMediaType.c_str()); |
Ray Essick | a727ef9 | 2021-03-29 13:35:02 -0700 | [diff] [blame] | 140 | addMediaDefaults(false); |
Ray Essick | 970f1c8 | 2021-03-25 13:37:45 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | } // namespace mediaformatshaper |
| 144 | } // namespace android |
| 145 | |