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

Commit 4fa89b9b authored by Marco Nelissen's avatar Marco Nelissen Committed by Android (Google) Code Review
Browse files

Merge "Increase buffer size for video"

parents 84b6440f 308ca621
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -222,8 +222,8 @@ status_t FragmentedMPEG4Source::start(MetaData *params) {


    mGroup = new MediaBufferGroup;
    mGroup = new MediaBufferGroup;


    int32_t max_size = 65536;
    // for video, make the buffer big enough for an extremely poorly compressed 1080p frame.
    // XXX CHECK(mFormat->findInt32(kKeyMaxInputSize, &max_size));
    int32_t max_size = mIsAudioTrack ? 65536 : 3110400;


    mGroup->add_buffer(new MediaBuffer(max_size));
    mGroup->add_buffer(new MediaBuffer(max_size));