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

Commit 17495a99 authored by Chong Zhang's avatar Chong Zhang
Browse files

transcoding: default to use real transcoder in the service

bug: 154734285

test: unit testing
Change-Id: Ib60d5c663abffbcf072be12e20cd836d51d16eb8
parent 08c3a2b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ binder_status_t MediaTranscodingService::dump(int fd, const char** /*args*/, uin
//static
void MediaTranscodingService::instantiate() {
    std::shared_ptr<TranscoderInterface> transcoder;
    if (property_get_bool("debug.transcoding.simulated_transcoder", true)) {
    if (property_get_bool("debug.transcoding.simulated_transcoder", false)) {
        transcoder = std::make_shared<SimulatedTranscoder>();
    } else {
        transcoder = std::make_shared<TranscoderWrapper>();