blob: a7fcc66c8227c9339e6344a16b0f42576f5182c6 [file] [log] [blame]
Ray Essick970f1c82021-03-25 13:37:45 -07001/*
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
25namespace android {
26namespace mediaformatshaper {
27
28/*
Ray Essicka727ef92021-03-29 13:35:02 -070029 * a block of pre-loaded tunings for codecs.
30 *
31 * things the library seeds into the codecproperties based
Ray Essick970f1c82021-03-25 13:37:45 -070032 * on the mediaType.
33 * XXX: parsing from a file is likely better than embedding in code.
34 */
35typedef struct {
Ray Essicka727ef92021-03-29 13:35:02 -070036 bool overrideable;
Ray Essick970f1c82021-03-25 13:37:45 -070037 const char *key;
Ray Essicka727ef92021-03-29 13:35:02 -070038 const char *value;
39} preloadTuning_t;
Ray Essick970f1c82021-03-25 13:37:45 -070040
41typedef struct {
42 const char *mediaType;
Ray Essicka727ef92021-03-29 13:35:02 -070043 preloadTuning_t *features;
44} preloadTunings_t;
Ray Essick970f1c82021-03-25 13:37:45 -070045
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 Essicka727ef92021-03-29 13:35:02 -070051static preloadTuning_t featuresAvc[] = {
52 {true, "vq-target-bpp", "2.45"},
Ray Essick244aaa52021-04-05 14:47:02 -070053 {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 Essicka727ef92021-03-29 13:35:02 -070057 {true, nullptr, 0}
Ray Essick970f1c82021-03-25 13:37:45 -070058};
59
Ray Essicka727ef92021-03-29 13:35:02 -070060static preloadTuning_t featuresHevc[] = {
61 {true, "vq-target-bpp", "2.30"},
Ray Essick244aaa52021-04-05 14:47:02 -070062 {true, "vq-target-qpmax", "40"}, // nop, since hevc codecs don't declare qp support
Ray Essicka727ef92021-03-29 13:35:02 -070063 {true, nullptr, 0}
Ray Essick970f1c82021-03-25 13:37:45 -070064};
65
Ray Essicka727ef92021-03-29 13:35:02 -070066static preloadTuning_t featuresGenericVideo[] = {
67 {true, "vq-target-bpp", "2.40"},
68 {true, nullptr, 0}
Ray Essick970f1c82021-03-25 13:37:45 -070069};
70
Ray Essicka727ef92021-03-29 13:35:02 -070071static preloadTunings_t preloadTunings[] = {
Ray Essick970f1c82021-03-25 13:37:45 -070072 { "video/avc", featuresAvc},
73 { "video/hevc", &featuresHevc[0]},
74
75 // wildcard for any video format not already captured
76 { "video/*", &featuresGenericVideo[0]},
Ray Essicka727ef92021-03-29 13:35:02 -070077
Ray Essick970f1c82021-03-25 13:37:45 -070078 { nullptr, nullptr}
79};
80
Ray Essicka727ef92021-03-29 13:35:02 -070081void CodecProperties::addMediaDefaults(bool overrideable) {
82 ALOGD("Seed: codec %s, mediatype %s, overrideable %d",
83 mName.c_str(), mMediaType.c_str(), overrideable);
Ray Essick970f1c82021-03-25 13:37:45 -070084
85 // load me up with initial configuration data
86 int count = 0;
Ray Essicka727ef92021-03-29 13:35:02 -070087 for (int i = 0; ; i++) {
88 preloadTunings_t *p = &preloadTunings[i];
Ray Essick970f1c82021-03-25 13:37:45 -070089 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 Essicka727ef92021-03-29 13:35:02 -0700113 preloadTuning_t *q = &p->features[j];
Ray Essick970f1c82021-03-25 13:37:45 -0700114 if (q->key == nullptr) {
115 break;
116 }
Ray Essicka727ef92021-03-29 13:35:02 -0700117 if (q->overrideable != overrideable) {
118 continue;
119 }
120 setTuningValue(q->key, q->value);
Ray Essick970f1c82021-03-25 13:37:45 -0700121 count++;
122 }
123 break;
124 }
125 }
126 ALOGV("loaded %d preset values", count);
127}
128
Ray Essicka727ef92021-03-29 13:35:02 -0700129// 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 Essick970f1c82021-03-25 13:37:45 -0700132//
Ray Essicka727ef92021-03-29 13:35:02 -0700133void CodecProperties::Seed() {
134 ALOGV("Seed: for codec %s, mediatype %s", mName.c_str(), mMediaType.c_str());
135 addMediaDefaults(true);
136}
137
Ray Essick970f1c82021-03-25 13:37:45 -0700138void CodecProperties::Finish() {
139 ALOGV("Finish: for codec %s, mediatype %s", mName.c_str(), mMediaType.c_str());
Ray Essicka727ef92021-03-29 13:35:02 -0700140 addMediaDefaults(false);
Ray Essick970f1c82021-03-25 13:37:45 -0700141}
142
143} // namespace mediaformatshaper
144} // namespace android
145