Merge "media: fix MediaFormat copy constructor"

This commit is contained in:
Lajos Molnar
2019-02-08 23:26:30 +00:00
committed by Android (Google) Code Review

View File

@@ -1520,6 +1520,7 @@ public final class MediaFormat {
* Create a copy of a media format object.
*/
public MediaFormat(@NonNull MediaFormat other) {
this();
mMap.putAll(other.mMap);
}