Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba66226b authored by Marco Nelissen's avatar Marco Nelissen Committed by android-build-merger
Browse files

Merge "Update raw decoder sample and bitrate limits" into qt-dev

am: 1961bef6

Change-Id: Ie0c6bf6a73477fa2b1cd5264fa7db5aabef36e3b
parents 2f996639 1961bef6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ public:
        addParameter(
                DefineParam(mSampleRate, C2_PARAMKEY_SAMPLE_RATE)
                .withDefault(new C2StreamSampleRateInfo::output(0u, 44100))
                .withFields({C2F(mSampleRate, value).inRange(8000, 192000)})
                .withFields({C2F(mSampleRate, value).inRange(8000, 384000)})
                .withSetter((Setter<decltype(*mSampleRate)>::StrictValueWithNoDeps))
                .build());

@@ -72,7 +72,7 @@ public:
        addParameter(
                DefineParam(mBitrate, C2_PARAMKEY_BITRATE)
                .withDefault(new C2StreamBitrateInfo::input(0u, 64000))
                .withFields({C2F(mBitrate, value).inRange(1, 10000000)})
                .withFields({C2F(mBitrate, value).inRange(1, 98304000)})
                .withSetter(Setter<decltype(*mBitrate)>::NonStrictValueWithNoDeps)
                .build());