public static AnamorphicResult hb_set_anamorphic_size2(PictureSettingsJob job, PictureSettingsTitle title, KeepSetting setting)
        {
            int settingMode = (int)setting + (job.KeepDisplayAspect ? 0x04 : 0);


            hb_rational_t computed_par = new hb_rational_t();

            switch (job.AnamorphicMode)
            {
            case Anamorphic.None:
                computed_par = new hb_rational_t {
                    den = 1, num = 1
                };
                break;

            case Anamorphic.Custom:
                computed_par = new hb_rational_t {
                    den = job.ParH, num = job.ParW
                };
                break;

            default:
                computed_par = new hb_rational_t {
                    den = title.ParH, num = title.ParW
                };
                break;
            }

            hb_geometry_settings_s uiGeometry = new hb_geometry_settings_s
            {
                crop      = new[] { job.Crop.Top, job.Crop.Bottom, job.Crop.Left, job.Crop.Right },
                itu_par   = 0,
                keep      = settingMode,
                maxWidth  = job.MaxWidth,
                maxHeight = job.MaxHeight,
                mode      = (int)job.AnamorphicMode,
                modulus   = job.Modulus.HasValue ? job.Modulus.Value : 16,
                geometry  = new hb_geometry_s {
                    height = job.Height, width = job.Width, par = computed_par
                }
            };

            hb_geometry_s sourceGeometry = new hb_geometry_s
            {
                width  = title.Width,
                height = title.Height,
                par    = new hb_rational_t {
                    den = title.ParH, num = title.ParW
                }
            };

            hb_geometry_s result = HandBrakePictureHelpers.GetAnamorphicSizes(sourceGeometry, uiGeometry);

            int outputWidth     = result.width;
            int outputHeight    = result.height;
            int outputParWidth  = result.par.num;
            int outputParHeight = result.par.den;

            return(new AnamorphicResult {
                OutputWidth = outputWidth, OutputHeight = outputHeight, OutputParWidth = outputParWidth, OutputParHeight = outputParHeight
            });
        }
Exemple #2
0
        public static AnamorphicResult GetAnamorphicSize(PictureSettingsJob job, PictureSettingsTitle sourceTitle, KeepSetting keepSetting, FlagsSetting flagSetting)
        {
            hb_rational_t computedPar;

            switch (job.AnamorphicMode)
            {
            case Anamorphic.None:
                computedPar = new hb_rational_t {
                    den = 1, num = 1
                };
                break;

            case Anamorphic.Custom:
                computedPar = new hb_rational_t {
                    den = job.ParH, num = job.ParW
                };
                break;

            default:
                computedPar = new hb_rational_t {
                    den = sourceTitle.ParH, num = sourceTitle.ParW
                };
                break;
            }

            hb_geometry_settings_s uiGeometry = new hb_geometry_settings_s
            {
                crop      = new[] { job.Crop.Top, job.Crop.Bottom, job.Crop.Left, job.Crop.Right },
                pad       = new[] { job.Pad.Top, job.Pad.Bottom, job.Pad.Left, job.Pad.Right },
                flags     = (int)flagSetting,
                itu_par   = 0,
                keep      = (int)keepSetting,
                maxWidth  = job.MaxWidth,
                maxHeight = job.MaxHeight,
                mode      = (int)job.AnamorphicMode,
                modulus   = 2,
                geometry  = new hb_geometry_s {
                    height = job.Height, width = job.Width, par = computedPar
                },
                displayWidth = job.DarWidth
            };

            // If we are rotated, the source title geometry must also be rotated.
            int titleWidth, titleHeight, titleParW, titleParH;

            if (job.RotateAngle != 0)
            {
                PictureSettingsJob titleRepresentation = new PictureSettingsJob
                {
                    Width       = sourceTitle.Width,
                    Height      = sourceTitle.Height,
                    RotateAngle = job.RotateAngle,
                    Hflip       = job.Hflip,
                    ParW        = sourceTitle.ParW,
                    ParH        = sourceTitle.ParH,
                    Crop        = new Cropping(),
                    Pad         = new Padding()
                };
                RotateResult titleRotation = HandBrakePictureHelpers.RotateGeometry(titleRepresentation);
                titleWidth  = titleRotation.Width;
                titleHeight = titleRotation.Height;
                titleParW   = titleRotation.ParNum;
                titleParH   = titleRotation.ParDen;
            }
            else
            {
                titleWidth  = sourceTitle.Width;
                titleHeight = sourceTitle.Height;
                titleParW   = sourceTitle.ParW;
                titleParH   = sourceTitle.ParH;
            }

            hb_geometry_s sourceGeometry = new hb_geometry_s
            {
                width  = titleWidth,
                height = titleHeight,
                par    = new hb_rational_t {
                    den = titleParH, num = titleParW
                }
            };

            hb_geometry_s result = new hb_geometry_s();

            HBFunctions.hb_set_anamorphic_size2(ref sourceGeometry, ref uiGeometry, ref result);

            int outputWidth     = result.width;
            int outputHeight    = result.height;
            int outputParWidth  = result.par.num;
            int outputParHeight = result.par.den;

            return(new AnamorphicResult {
                OutputWidth = outputWidth, OutputHeight = outputHeight, OutputParWidth = outputParWidth, OutputParHeight = outputParHeight
            });
        }
Exemple #3
0
        /// <summary>
        /// The hb_set_anamorphic_size 2.
        /// </summary>
        /// <param name="job">
        /// The job.
        /// </param>
        /// <param name="title">
        /// The title.
        /// </param>
        /// <param name="setting">
        /// The setting.
        /// </param>
        /// <returns>
        /// The <see cref="AnamorphicResult"/>.
        /// </returns>
        public static AnamorphicResult hb_set_anamorphic_size2(PictureSettingsJob job, PictureSettingsTitle title, KeepSetting setting)
        {
            int settingMode = (int)setting + (job.KeepDisplayAspect ? 0x04 : 0);


            hb_rational_t computed_par = new hb_rational_t();

            switch (job.AnamorphicMode)
            {
            case Anamorphic.None:
                computed_par = new hb_rational_t {
                    den = 1, num = 1
                };
                break;

            case Anamorphic.Custom:
                computed_par = new hb_rational_t {
                    den = job.ParH, num = job.ParW
                };
                break;

            default:
                computed_par = new hb_rational_t {
                    den = title.ParH, num = title.ParW
                };
                break;
            }

            hb_geometry_settings_s uiGeometry = new hb_geometry_settings_s
            {
                crop      = new[] { job.Crop.Top, job.Crop.Bottom, job.Crop.Left, job.Crop.Right },
                itu_par   = 0,
                keep      = settingMode,
                maxWidth  = job.MaxWidth,
                maxHeight = job.MaxHeight,
                mode      = (int)job.AnamorphicMode,
                modulus   = job.Modulus.HasValue ? job.Modulus.Value : 16,
                geometry  = new hb_geometry_s {
                    height = job.Height, width = job.Width, par = computed_par
                }
            };

            hb_geometry_s sourceGeometry = new hb_geometry_s
            {
                width  = title.Width,
                height = title.Height,
                par    = new hb_rational_t {
                    den = title.ParH, num = title.ParW
                }
            };

            hb_geometry_s result = new hb_geometry_s();

            IHbFunctionsProvider provider    = IoC.Get <IHbFunctionsProvider>(); // TODO make this method non static and remove IoC call.
            IHbFunctions         hbFunctions = provider.GetHbFunctionsWrapper();

            hbFunctions.hb_set_anamorphic_size2(ref sourceGeometry, ref uiGeometry, ref result);

            int outputWidth     = result.width;
            int outputHeight    = result.height;
            int outputParWidth  = result.par.num;
            int outputParHeight = result.par.den;

            return(new AnamorphicResult {
                OutputWidth = outputWidth, OutputHeight = outputHeight, OutputParWidth = outputParWidth, OutputParHeight = outputParHeight
            });
        }