public MediaTransformationListener(Context context,
                                    string requestId,
                                    TransformationState transformationState,
                                    TargetMedia targetMedia,
                                    SharedMediaStoragePublisher publisher)
 {
     this.context             = context;
     this.requestId           = requestId;
     this.transformationState = transformationState;
     this.targetMedia         = targetMedia;
     this.publisher           = publisher;
 }
 public MediaTransformationListener(Context context, string requestId, TransformationState transformationState, TargetMedia targetMedia) : this(context, requestId, transformationState, targetMedia, new SharedMediaStoragePublisher(context))
 {
 }