/AWS1/IF_MDC=>LISTPRESETS()¶
About ListPresets¶
Retrieve a JSON array of up to twenty of your presets. This will return the presets themselves, not just a list of them. To retrieve the next twenty presets, use the nextToken string returned with the array.
Method Signature¶
METHODS /AWS1/IF_MDC~LISTPRESETS
IMPORTING
!IV_CATEGORY TYPE /AWS1/MDC__STRING OPTIONAL
!IV_LISTBY TYPE /AWS1/MDCPRESETLISTBY OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/MDC__INTEGERMIN1MAX20 OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/MDC__STRING OPTIONAL
!IV_ORDER TYPE /AWS1/MDCORDER OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_mdclistpresetsrsp
RAISING
/AWS1/CX_MDCBADREQUESTEX
/AWS1/CX_MDCCONFLICTEXCEPTION
/AWS1/CX_MDCFORBIDDENEXCEPTION
/AWS1/CX_MDCINTERNALSERVERER00
/AWS1/CX_MDCNOTFOUNDEXCEPTION
/AWS1/CX_MDCSERVICEQUOTAEXCDEX
/AWS1/CX_MDCTOOMANYREQUESTSEX
/AWS1/CX_MDCCLIENTEXC
/AWS1/CX_MDCSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_category TYPE /AWS1/MDC__STRING /AWS1/MDC__STRING¶
Optionally, specify a preset category to limit responses to only presets from that category.
iv_listby TYPE /AWS1/MDCPRESETLISTBY /AWS1/MDCPRESETLISTBY¶
Optional. When you request a list of presets, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don't specify, the service will list them by name.
iv_maxresults TYPE /AWS1/MDC__INTEGERMIN1MAX20 /AWS1/MDC__INTEGERMIN1MAX20¶
Optional. Number of presets, up to twenty, that will be returned at one time
iv_nexttoken TYPE /AWS1/MDC__STRING /AWS1/MDC__STRING¶
Use this string, provided with the response to a previous request, to request the next batch of presets.
iv_order TYPE /AWS1/MDCORDER /AWS1/MDCORDER¶
Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_mdclistpresetsrsp /AWS1/CL_MDCLISTPRESETSRSP¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->listpresets(
iv_category = |string|
iv_listby = |string|
iv_maxresults = 123
iv_nexttoken = |string|
iv_order = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv___string = lo_result->get_nexttoken( ).
LOOP AT lo_result->get_presets( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv___string = lo_row_1->get_arn( ).
lv___string = lo_row_1->get_category( ).
lv___timestampunix = lo_row_1->get_createdat( ).
lv___string = lo_row_1->get_description( ).
lv___timestampunix = lo_row_1->get_lastupdated( ).
lv___string = lo_row_1->get_name( ).
lo_presetsettings = lo_row_1->get_settings( ).
IF lo_presetsettings IS NOT INITIAL.
LOOP AT lo_presetsettings->get_audiodescriptions( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_audiochanneltaggingsett = lo_row_3->get_audiochanneltaggingstgs( ).
IF lo_audiochanneltaggingsett IS NOT INITIAL.
lv_audiochanneltag = lo_audiochanneltaggingsett->get_channeltag( ).
LOOP AT lo_audiochanneltaggingsett->get_channeltags( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_audiochanneltag = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_audionormalizationsetti = lo_row_3->get_audionormalizationstgs( ).
IF lo_audionormalizationsetti IS NOT INITIAL.
lv_audionormalizationalgor = lo_audionormalizationsetti->get_algorithm( ).
lv_audionormalizationalgor_1 = lo_audionormalizationsetti->get_algorithmcontrol( ).
lv___integerminnegative70m = lo_audionormalizationsetti->get_correctiongatelevel( ).
lv_audionormalizationloudn = lo_audionormalizationsetti->get_loudnesslogging( ).
lv_audionormalizationpeakc = lo_audionormalizationsetti->get_peakcalculation( ).
lv___doubleminnegative59ma = lo_audionormalizationsetti->get_targetlkfs( ).
lv___doubleminnegative8max = lo_audionormalizationsetti->get_truepeaklimiterthreshold( ).
ENDIF.
lo_audiopitchcorrectionset = lo_row_3->get_audiopitchcorrsettings( ).
IF lo_audiopitchcorrectionset IS NOT INITIAL.
lv_slowpalpitchcorrection = lo_audiopitchcorrectionset->get_slowpalpitchcorrection( ).
ENDIF.
lv___stringmax2048 = lo_row_3->get_audiosourcename( ).
lv___integermin0max255 = lo_row_3->get_audiotype( ).
lv_audiotypecontrol = lo_row_3->get_audiotypecontrol( ).
lo_audiocodecsettings = lo_row_3->get_codecsettings( ).
IF lo_audiocodecsettings IS NOT INITIAL.
lo_aacsettings = lo_audiocodecsettings->get_aacsettings( ).
IF lo_aacsettings IS NOT INITIAL.
lv_aacaudiodescriptionbroa = lo_aacsettings->get_audiodescbroadcastermix( ).
lv___integermin6000max1024 = lo_aacsettings->get_bitrate( ).
lv_aaccodecprofile = lo_aacsettings->get_codecprofile( ).
lv_aaccodingmode = lo_aacsettings->get_codingmode( ).
lv_aacloudnessmeasurementm = lo_aacsettings->get_loudnessmeasurementmode( ).
lv___integermin2000max3000 = lo_aacsettings->get_rapinterval( ).
lv_aacratecontrolmode = lo_aacsettings->get_ratecontrolmode( ).
lv_aacrawformat = lo_aacsettings->get_rawformat( ).
lv___integermin8000max9600 = lo_aacsettings->get_samplerate( ).
lv_aacspecification = lo_aacsettings->get_specification( ).
lv___integermin6max16 = lo_aacsettings->get_targetloudnessrange( ).
lv_aacvbrquality = lo_aacsettings->get_vbrquality( ).
ENDIF.
lo_ac3settings = lo_audiocodecsettings->get_ac3settings( ).
IF lo_ac3settings IS NOT INITIAL.
lv___integermin64000max640 = lo_ac3settings->get_bitrate( ).
lv_ac3bitstreammode = lo_ac3settings->get_bitstreammode( ).
lv_ac3codingmode = lo_ac3settings->get_codingmode( ).
lv___integermin1max31 = lo_ac3settings->get_dialnorm( ).
lv_ac3dynamicrangecompress = lo_ac3settings->get_dynrangecompressionline( ).
lv_ac3dynamicrangecompress_1 = lo_ac3settings->get_dynrangecompressionpfl( ).
lv_ac3dynamicrangecompress_2 = lo_ac3settings->get_dynrangecompressionrf( ).
lv_ac3lfefilter = lo_ac3settings->get_lfefilter( ).
lv_ac3metadatacontrol = lo_ac3settings->get_metadatacontrol( ).
lv___integermin48000max480 = lo_ac3settings->get_samplerate( ).
ENDIF.
lo_aiffsettings = lo_audiocodecsettings->get_aiffsettings( ).
IF lo_aiffsettings IS NOT INITIAL.
lv___integermin16max24 = lo_aiffsettings->get_bitdepth( ).
lv___integermin1max64 = lo_aiffsettings->get_channels( ).
lv___integermin8000max1920 = lo_aiffsettings->get_samplerate( ).
ENDIF.
lv_audiocodec = lo_audiocodecsettings->get_codec( ).
lo_eac3atmossettings = lo_audiocodecsettings->get_eac3atmossettings( ).
IF lo_eac3atmossettings IS NOT INITIAL.
lv___integermin384000max10 = lo_eac3atmossettings->get_bitrate( ).
lv_eac3atmosbitstreammode = lo_eac3atmossettings->get_bitstreammode( ).
lv_eac3atmoscodingmode = lo_eac3atmossettings->get_codingmode( ).
lv_eac3atmosdialogueintell = lo_eac3atmossettings->get_dialogueintelligence( ).
lv_eac3atmosdownmixcontrol = lo_eac3atmossettings->get_downmixcontrol( ).
lv_eac3atmosdynamicrangeco = lo_eac3atmossettings->get_dynrangecompressionline( ).
lv_eac3atmosdynamicrangeco_1 = lo_eac3atmossettings->get_dynrangecompressionrf( ).
lv_eac3atmosdynamicrangeco_2 = lo_eac3atmossettings->get_dynamicrangecontrol( ).
lv___doubleminnegative6max = lo_eac3atmossettings->get_lorocentermixlevel( ).
lv___doubleminnegative60ma = lo_eac3atmossettings->get_lorosurroundmixlevel( ).
lv___doubleminnegative6max = lo_eac3atmossettings->get_ltrtcentermixlevel( ).
lv___doubleminnegative60ma = lo_eac3atmossettings->get_ltrtsurroundmixlevel( ).
lv_eac3atmosmeteringmode = lo_eac3atmossettings->get_meteringmode( ).
lv___integermin48000max480 = lo_eac3atmossettings->get_samplerate( ).
lv___integermin0max100 = lo_eac3atmossettings->get_speechthreshold( ).
lv_eac3atmosstereodownmix = lo_eac3atmossettings->get_stereodownmix( ).
lv_eac3atmossurroundexmode = lo_eac3atmossettings->get_surroundexmode( ).
ENDIF.
lo_eac3settings = lo_audiocodecsettings->get_eac3settings( ).
IF lo_eac3settings IS NOT INITIAL.
lv_eac3attenuationcontrol = lo_eac3settings->get_attenuationcontrol( ).
lv___integermin32000max302 = lo_eac3settings->get_bitrate( ).
lv_eac3bitstreammode = lo_eac3settings->get_bitstreammode( ).
lv_eac3codingmode = lo_eac3settings->get_codingmode( ).
lv_eac3dcfilter = lo_eac3settings->get_dcfilter( ).
lv___integermin1max31 = lo_eac3settings->get_dialnorm( ).
lv_eac3dynamicrangecompres = lo_eac3settings->get_dynrangecompressionline( ).
lv_eac3dynamicrangecompres_1 = lo_eac3settings->get_dynrangecompressionrf( ).
lv_eac3lfecontrol = lo_eac3settings->get_lfecontrol( ).
lv_eac3lfefilter = lo_eac3settings->get_lfefilter( ).
lv___doubleminnegative60ma_1 = lo_eac3settings->get_lorocentermixlevel( ).
lv___doubleminnegative60ma = lo_eac3settings->get_lorosurroundmixlevel( ).
lv___doubleminnegative60ma_1 = lo_eac3settings->get_ltrtcentermixlevel( ).
lv___doubleminnegative60ma = lo_eac3settings->get_ltrtsurroundmixlevel( ).
lv_eac3metadatacontrol = lo_eac3settings->get_metadatacontrol( ).
lv_eac3passthroughcontrol = lo_eac3settings->get_passthroughcontrol( ).
lv_eac3phasecontrol = lo_eac3settings->get_phasecontrol( ).
lv___integermin48000max480 = lo_eac3settings->get_samplerate( ).
lv_eac3stereodownmix = lo_eac3settings->get_stereodownmix( ).
lv_eac3surroundexmode = lo_eac3settings->get_surroundexmode( ).
lv_eac3surroundmode = lo_eac3settings->get_surroundmode( ).
ENDIF.
lo_flacsettings = lo_audiocodecsettings->get_flacsettings( ).
IF lo_flacsettings IS NOT INITIAL.
lv___integermin16max24 = lo_flacsettings->get_bitdepth( ).
lv___integermin1max8 = lo_flacsettings->get_channels( ).
lv___integermin22050max192 = lo_flacsettings->get_samplerate( ).
ENDIF.
lo_mp2settings = lo_audiocodecsettings->get_mp2settings( ).
IF lo_mp2settings IS NOT INITIAL.
lv_mp2audiodescriptionmix = lo_mp2settings->get_audiodescriptionmix( ).
lv___integermin32000max384 = lo_mp2settings->get_bitrate( ).
lv___integermin1max2 = lo_mp2settings->get_channels( ).
lv___integermin32000max480 = lo_mp2settings->get_samplerate( ).
ENDIF.
lo_mp3settings = lo_audiocodecsettings->get_mp3settings( ).
IF lo_mp3settings IS NOT INITIAL.
lv___integermin16000max320 = lo_mp3settings->get_bitrate( ).
lv___integermin1max2 = lo_mp3settings->get_channels( ).
lv_mp3ratecontrolmode = lo_mp3settings->get_ratecontrolmode( ).
lv___integermin22050max480 = lo_mp3settings->get_samplerate( ).
lv___integermin0max9 = lo_mp3settings->get_vbrquality( ).
ENDIF.
lo_opussettings = lo_audiocodecsettings->get_opussettings( ).
IF lo_opussettings IS NOT INITIAL.
lv___integermin32000max192 = lo_opussettings->get_bitrate( ).
lv___integermin1max2 = lo_opussettings->get_channels( ).
lv___integermin16000max480 = lo_opussettings->get_samplerate( ).
ENDIF.
lo_vorbissettings = lo_audiocodecsettings->get_vorbissettings( ).
IF lo_vorbissettings IS NOT INITIAL.
lv___integermin1max2 = lo_vorbissettings->get_channels( ).
lv___integermin22050max480 = lo_vorbissettings->get_samplerate( ).
lv___integerminnegative1ma = lo_vorbissettings->get_vbrquality( ).
ENDIF.
lo_wavsettings = lo_audiocodecsettings->get_wavsettings( ).
IF lo_wavsettings IS NOT INITIAL.
lv___integermin16max24 = lo_wavsettings->get_bitdepth( ).
lv___integermin1max64 = lo_wavsettings->get_channels( ).
lv_wavformat = lo_wavsettings->get_format( ).
lv___integermin8000max1920 = lo_wavsettings->get_samplerate( ).
ENDIF.
ENDIF.
lv___stringpatternazaz23az = lo_row_3->get_customlanguagecode( ).
lv_languagecode = lo_row_3->get_languagecode( ).
lv_audiolanguagecodecontro = lo_row_3->get_languagecodecontrol( ).
lo_remixsettings = lo_row_3->get_remixsettings( ).
IF lo_remixsettings IS NOT INITIAL.
lv___integermin1max64 = lo_remixsettings->get_audiodescaudiochannel( ).
lv___integermin1max64 = lo_remixsettings->get_audiodescdatachannel( ).
lo_channelmapping = lo_remixsettings->get_channelmapping( ).
IF lo_channelmapping IS NOT INITIAL.
LOOP AT lo_channelmapping->get_outputchannels( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
LOOP AT lo_row_7->get_inputchannels( ) into lo_row_8.
lo_row_9 = lo_row_8.
IF lo_row_9 IS NOT INITIAL.
lv___integerminnegative60m = lo_row_9->get_value( ).
ENDIF.
ENDLOOP.
LOOP AT lo_row_7->get_inputchannelsfinetune( ) into lo_row_10.
lo_row_11 = lo_row_10.
IF lo_row_11 IS NOT INITIAL.
lv___doubleminnegative60ma_2 = lo_row_11->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
lv___integermin1max64 = lo_remixsettings->get_channelsin( ).
lv___integermin1max64 = lo_remixsettings->get_channelsout( ).
ENDIF.
lv___stringpatternws = lo_row_3->get_streamname( ).
ENDIF.
ENDLOOP.
LOOP AT lo_presetsettings->get_captiondescriptions( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv___stringpatternazaz23az_1 = lo_row_13->get_customlanguagecode( ).
lo_captiondestinationsetti = lo_row_13->get_destinationsettings( ).
IF lo_captiondestinationsetti IS NOT INITIAL.
lo_burnindestinationsettin = lo_captiondestinationsetti->get_burnindstsettings( ).
IF lo_burnindestinationsettin IS NOT INITIAL.
lv_burninsubtitlealignment = lo_burnindestinationsettin->get_alignment( ).
lv_burninsubtitleapplyfont = lo_burnindestinationsettin->get_applyfontcolor( ).
lv_burninsubtitlebackgroun = lo_burnindestinationsettin->get_backgroundcolor( ).
lv___integermin0max255 = lo_burnindestinationsettin->get_backgroundopacity( ).
lv_burninsubtitlefallbackf = lo_burnindestinationsettin->get_fallbackfont( ).
lv_burninsubtitlefontcolor = lo_burnindestinationsettin->get_fontcolor( ).
lv___stringpatterns3ttfhtt = lo_burnindestinationsettin->get_fontfilebold( ).
lv___string = lo_burnindestinationsettin->get_fontfilebolditalic( ).
lv___stringpatterns3ttfhtt = lo_burnindestinationsettin->get_fontfileitalic( ).
lv___stringpatterns3ttfhtt = lo_burnindestinationsettin->get_fontfileregular( ).
lv___integermin0max255 = lo_burnindestinationsettin->get_fontopacity( ).
lv___integermin96max600 = lo_burnindestinationsettin->get_fontresolution( ).
lv_fontscript = lo_burnindestinationsettin->get_fontscript( ).
lv___integermin0max96 = lo_burnindestinationsettin->get_fontsize( ).
lv___stringmin6max8pattern = lo_burnindestinationsettin->get_hexfontcolor( ).
lv_burninsubtitleoutlineco = lo_burnindestinationsettin->get_outlinecolor( ).
lv___integermin0max10 = lo_burnindestinationsettin->get_outlinesize( ).
lv_removerubyreserveattrib = lo_burnindestinationsettin->get_removerubyreserveattrs( ).
lv_burninsubtitleshadowcol = lo_burnindestinationsettin->get_shadowcolor( ).
lv___integermin0max255 = lo_burnindestinationsettin->get_shadowopacity( ).
lv___integerminnegative214 = lo_burnindestinationsettin->get_shadowxoffset( ).
lv___integerminnegative214 = lo_burnindestinationsettin->get_shadowyoffset( ).
lv_burninsubtitlestylepass = lo_burnindestinationsettin->get_stylepassthrough( ).
lv_burninsubtitleteletexts = lo_burnindestinationsettin->get_teletextspacing( ).
lv___integermin0max2147483 = lo_burnindestinationsettin->get_xposition( ).
lv___integermin0max2147483 = lo_burnindestinationsettin->get_yposition( ).
ENDIF.
lv_captiondestinationtype = lo_captiondestinationsetti->get_destinationtype( ).
lo_dvbsubdestinationsettin = lo_captiondestinationsetti->get_dvbsubdstsettings( ).
IF lo_dvbsubdestinationsettin IS NOT INITIAL.
lv_dvbsubtitlealignment = lo_dvbsubdestinationsettin->get_alignment( ).
lv_dvbsubtitleapplyfontcol = lo_dvbsubdestinationsettin->get_applyfontcolor( ).
lv_dvbsubtitlebackgroundco = lo_dvbsubdestinationsettin->get_backgroundcolor( ).
lv___integermin0max255 = lo_dvbsubdestinationsettin->get_backgroundopacity( ).
lv_dvbddshandling = lo_dvbsubdestinationsettin->get_ddshandling( ).
lv___integermin0max2147483 = lo_dvbsubdestinationsettin->get_ddsxcoordinate( ).
lv___integermin0max2147483 = lo_dvbsubdestinationsettin->get_ddsycoordinate( ).
lv_dvbsubsubtitlefallbackf = lo_dvbsubdestinationsettin->get_fallbackfont( ).
lv_dvbsubtitlefontcolor = lo_dvbsubdestinationsettin->get_fontcolor( ).
lv___stringpatterns3ttfhtt = lo_dvbsubdestinationsettin->get_fontfilebold( ).
lv___stringpatterns3ttfhtt = lo_dvbsubdestinationsettin->get_fontfilebolditalic( ).
lv___stringpatterns3ttfhtt = lo_dvbsubdestinationsettin->get_fontfileitalic( ).
lv___stringpatterns3ttfhtt = lo_dvbsubdestinationsettin->get_fontfileregular( ).
lv___integermin0max255 = lo_dvbsubdestinationsettin->get_fontopacity( ).
lv___integermin96max600 = lo_dvbsubdestinationsettin->get_fontresolution( ).
lv_fontscript = lo_dvbsubdestinationsettin->get_fontscript( ).
lv___integermin0max96 = lo_dvbsubdestinationsettin->get_fontsize( ).
lv___integermin1max2147483 = lo_dvbsubdestinationsettin->get_height( ).
lv___stringmin6max8pattern = lo_dvbsubdestinationsettin->get_hexfontcolor( ).
lv_dvbsubtitleoutlinecolor = lo_dvbsubdestinationsettin->get_outlinecolor( ).
lv___integermin0max10 = lo_dvbsubdestinationsettin->get_outlinesize( ).
lv_dvbsubtitleshadowcolor = lo_dvbsubdestinationsettin->get_shadowcolor( ).
lv___integermin0max255 = lo_dvbsubdestinationsettin->get_shadowopacity( ).
lv___integerminnegative214 = lo_dvbsubdestinationsettin->get_shadowxoffset( ).
lv___integerminnegative214 = lo_dvbsubdestinationsettin->get_shadowyoffset( ).
lv_dvbsubtitlestylepassthr = lo_dvbsubdestinationsettin->get_stylepassthrough( ).
lv_dvbsubtitlingtype = lo_dvbsubdestinationsettin->get_subtitlingtype( ).
lv_dvbsubtitleteletextspac = lo_dvbsubdestinationsettin->get_teletextspacing( ).
lv___integermin1max2147483 = lo_dvbsubdestinationsettin->get_width( ).
lv___integermin0max2147483 = lo_dvbsubdestinationsettin->get_xposition( ).
lv___integermin0max2147483 = lo_dvbsubdestinationsettin->get_yposition( ).
ENDIF.
lo_embeddeddestinationsett = lo_captiondestinationsetti->get_embeddeddstsettings( ).
IF lo_embeddeddestinationsett IS NOT INITIAL.
lv___integermin1max4 = lo_embeddeddestinationsett->get_dst608channelnumber( ).
lv___integermin1max6 = lo_embeddeddestinationsett->get_dst708servicenumber( ).
ENDIF.
lo_imscdestinationsettings = lo_captiondestinationsetti->get_imscdestinationsettings( ).
IF lo_imscdestinationsettings IS NOT INITIAL.
lv_imscaccessibilitysubs = lo_imscdestinationsettings->get_accessibility( ).
lv_imscstylepassthrough = lo_imscdestinationsettings->get_stylepassthrough( ).
ENDIF.
lo_sccdestinationsettings = lo_captiondestinationsetti->get_sccdestinationsettings( ).
IF lo_sccdestinationsettings IS NOT INITIAL.
lv_sccdestinationframerate = lo_sccdestinationsettings->get_framerate( ).
ENDIF.
lo_srtdestinationsettings = lo_captiondestinationsetti->get_srtdestinationsettings( ).
IF lo_srtdestinationsettings IS NOT INITIAL.
lv_srtstylepassthrough = lo_srtdestinationsettings->get_stylepassthrough( ).
ENDIF.
lo_teletextdestinationsett = lo_captiondestinationsetti->get_teletextdstsettings( ).
IF lo_teletextdestinationsett IS NOT INITIAL.
lv___stringmin3max3pattern = lo_teletextdestinationsett->get_pagenumber( ).
LOOP AT lo_teletextdestinationsett->get_pagetypes( ) into lo_row_14.
lo_row_15 = lo_row_14.
IF lo_row_15 IS NOT INITIAL.
lv_teletextpagetype = lo_row_15->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_ttmldestinationsettings = lo_captiondestinationsetti->get_ttmldestinationsettings( ).
IF lo_ttmldestinationsettings IS NOT INITIAL.
lv_ttmlstylepassthrough = lo_ttmldestinationsettings->get_stylepassthrough( ).
ENDIF.
lo_webvttdestinationsettin = lo_captiondestinationsetti->get_webvttdstsettings( ).
IF lo_webvttdestinationsettin IS NOT INITIAL.
lv_webvttaccessibilitysubs = lo_webvttdestinationsettin->get_accessibility( ).
lv_webvttstylepassthrough = lo_webvttdestinationsettin->get_stylepassthrough( ).
ENDIF.
ENDIF.
lv_languagecode = lo_row_13->get_languagecode( ).
lv___string = lo_row_13->get_languagedescription( ).
ENDIF.
ENDLOOP.
lo_containersettings = lo_presetsettings->get_containersettings( ).
IF lo_containersettings IS NOT INITIAL.
lo_cmfcsettings = lo_containersettings->get_cmfcsettings( ).
IF lo_cmfcsettings IS NOT INITIAL.
lv_cmfcaudioduration = lo_cmfcsettings->get_audioduration( ).
lv___string = lo_cmfcsettings->get_audiogroupid( ).
lv___string = lo_cmfcsettings->get_audiorenditionsets( ).
lv_cmfcaudiotracktype = lo_cmfcsettings->get_audiotracktype( ).
lv_cmfcdescriptivevideoser = lo_cmfcsettings->get_descriptivevideosvcflag( ).
lv_cmfciframeonlymanifest = lo_cmfcsettings->get_iframeonlymanifest( ).
lv_cmfcklvmetadata = lo_cmfcsettings->get_klvmetadata( ).
lv_cmfcmanifestmetadatasig = lo_cmfcsettings->get_manifestmetsignaling( ).
lv_cmfcscte35esam = lo_cmfcsettings->get_scte35esam( ).
lv_cmfcscte35source = lo_cmfcsettings->get_scte35source( ).
lv_cmfctimedmetadata = lo_cmfcsettings->get_timedmetadata( ).
lv_cmfctimedmetadataboxver = lo_cmfcsettings->get_timedmetadataboxversion( ).
lv___stringmax1000 = lo_cmfcsettings->get_timedmetadataschemeiduri( ).
lv___stringmax1000 = lo_cmfcsettings->get_timedmetadatavalue( ).
ENDIF.
lv_containertype = lo_containersettings->get_container( ).
lo_f4vsettings = lo_containersettings->get_f4vsettings( ).
IF lo_f4vsettings IS NOT INITIAL.
lv_f4vmoovplacement = lo_f4vsettings->get_moovplacement( ).
ENDIF.
lo_m2tssettings = lo_containersettings->get_m2tssettings( ).
IF lo_m2tssettings IS NOT INITIAL.
lv_m2tsaudiobuffermodel = lo_m2tssettings->get_audiobuffermodel( ).
lv_m2tsaudioduration = lo_m2tssettings->get_audioduration( ).
lv___integermin0max2147483 = lo_m2tssettings->get_audioframesperpes( ).
LOOP AT lo_m2tssettings->get_audiopids( ) into lo_row_16.
lo_row_17 = lo_row_16.
IF lo_row_17 IS NOT INITIAL.
lv___integermin32max8182 = lo_row_17->get_value( ).
ENDIF.
ENDLOOP.
lv___integerminnegative100 = lo_m2tssettings->get_audioptsoffsetdelta( ).
lv___integermin0max2147483 = lo_m2tssettings->get_bitrate( ).
lv_m2tsbuffermodel = lo_m2tssettings->get_buffermodel( ).
lv_m2tsdataptscontrol = lo_m2tssettings->get_dataptscontrol( ).
lo_dvbnitsettings = lo_m2tssettings->get_dvbnitsettings( ).
IF lo_dvbnitsettings IS NOT INITIAL.
lv___integermin0max65535 = lo_dvbnitsettings->get_networkid( ).
lv___stringmin1max256 = lo_dvbnitsettings->get_networkname( ).
lv___integermin25max10000 = lo_dvbnitsettings->get_nitinterval( ).
ENDIF.
lo_dvbsdtsettings = lo_m2tssettings->get_dvbsdtsettings( ).
IF lo_dvbsdtsettings IS NOT INITIAL.
lv_outputsdt = lo_dvbsdtsettings->get_outputsdt( ).
lv___integermin25max2000 = lo_dvbsdtsettings->get_sdtinterval( ).
lv___stringmin1max256 = lo_dvbsdtsettings->get_servicename( ).
lv___stringmin1max256 = lo_dvbsdtsettings->get_serviceprovidername( ).
ENDIF.
LOOP AT lo_m2tssettings->get_dvbsubpids( ) into lo_row_16.
lo_row_17 = lo_row_16.
IF lo_row_17 IS NOT INITIAL.
lv___integermin32max8182 = lo_row_17->get_value( ).
ENDIF.
ENDLOOP.
lo_dvbtdtsettings = lo_m2tssettings->get_dvbtdtsettings( ).
IF lo_dvbtdtsettings IS NOT INITIAL.
lv___integermin1000max3000 = lo_dvbtdtsettings->get_tdtinterval( ).
ENDIF.
lv___integermin32max8182 = lo_m2tssettings->get_dvbteletextpid( ).
lv_m2tsebpaudiointerval = lo_m2tssettings->get_ebpaudiointerval( ).
lv_m2tsebpplacement = lo_m2tssettings->get_ebpplacement( ).
lv_m2tsesrateinpes = lo_m2tssettings->get_esrateinpes( ).
lv_m2tsforcetsvideoebporde = lo_m2tssettings->get_forcetsvideoebporder( ).
lv___doublemin0 = lo_m2tssettings->get_fragmenttime( ).
lv_m2tsklvmetadata = lo_m2tssettings->get_klvmetadata( ).
lv___integermin0max500 = lo_m2tssettings->get_maxpcrinterval( ).
lv___integermin0max10000 = lo_m2tssettings->get_minebpinterval( ).
lv_m2tsnielsenid3 = lo_m2tssettings->get_nielsenid3( ).
lv___doublemin0 = lo_m2tssettings->get_nullpacketbitrate( ).
lv___integermin0max1000 = lo_m2tssettings->get_patinterval( ).
lv_m2tspcrcontrol = lo_m2tssettings->get_pcrcontrol( ).
lv___integermin32max8182 = lo_m2tssettings->get_pcrpid( ).
lv___integermin0max1000 = lo_m2tssettings->get_pmtinterval( ).
lv___integermin32max8182 = lo_m2tssettings->get_pmtpid( ).
lv_m2tspreventbufferunderf = lo_m2tssettings->get_preventbufferunderflow( ).
lv___integermin32max8182 = lo_m2tssettings->get_privatemetadatapid( ).
lv___integermin0max65535 = lo_m2tssettings->get_programnumber( ).
lv___integermin0max3600 = lo_m2tssettings->get_ptsoffset( ).
lv_tsptsoffset = lo_m2tssettings->get_ptsoffsetmode( ).
lv_m2tsratemode = lo_m2tssettings->get_ratemode( ).
lo_m2tsscte35esam = lo_m2tssettings->get_scte35esam( ).
IF lo_m2tsscte35esam IS NOT INITIAL.
lv___integermin32max8182 = lo_m2tsscte35esam->get_scte35esampid( ).
ENDIF.
lv___integermin32max8182 = lo_m2tssettings->get_scte35pid( ).
lv_m2tsscte35source = lo_m2tssettings->get_scte35source( ).
lv_m2tssegmentationmarkers = lo_m2tssettings->get_segmentationmarkers( ).
lv_m2tssegmentationstyle = lo_m2tssettings->get_segmentationstyle( ).
lv___doublemin0 = lo_m2tssettings->get_segmentationtime( ).
lv___integermin32max8182 = lo_m2tssettings->get_timedmetadatapid( ).
lv___integermin0max65535 = lo_m2tssettings->get_transportstreamid( ).
lv___integermin32max8182 = lo_m2tssettings->get_videopid( ).
ENDIF.
lo_m3u8settings = lo_containersettings->get_m3u8settings( ).
IF lo_m3u8settings IS NOT INITIAL.
lv_m3u8audioduration = lo_m3u8settings->get_audioduration( ).
lv___integermin0max2147483 = lo_m3u8settings->get_audioframesperpes( ).
LOOP AT lo_m3u8settings->get_audiopids( ) into lo_row_16.
lo_row_17 = lo_row_16.
IF lo_row_17 IS NOT INITIAL.
lv___integermin32max8182 = lo_row_17->get_value( ).
ENDIF.
ENDLOOP.
lv___integerminnegative100 = lo_m3u8settings->get_audioptsoffsetdelta( ).
lv_m3u8dataptscontrol = lo_m3u8settings->get_dataptscontrol( ).
lv___integermin0max500 = lo_m3u8settings->get_maxpcrinterval( ).
lv_m3u8nielsenid3 = lo_m3u8settings->get_nielsenid3( ).
lv___integermin0max1000 = lo_m3u8settings->get_patinterval( ).
lv_m3u8pcrcontrol = lo_m3u8settings->get_pcrcontrol( ).
lv___integermin32max8182 = lo_m3u8settings->get_pcrpid( ).
lv___integermin0max1000 = lo_m3u8settings->get_pmtinterval( ).
lv___integermin32max8182 = lo_m3u8settings->get_pmtpid( ).
lv___integermin32max8182 = lo_m3u8settings->get_privatemetadatapid( ).
lv___integermin0max65535 = lo_m3u8settings->get_programnumber( ).
lv___integermin0max3600 = lo_m3u8settings->get_ptsoffset( ).
lv_tsptsoffset = lo_m3u8settings->get_ptsoffsetmode( ).
lv___integermin32max8182 = lo_m3u8settings->get_scte35pid( ).
lv_m3u8scte35source = lo_m3u8settings->get_scte35source( ).
lv_timedmetadata = lo_m3u8settings->get_timedmetadata( ).
lv___integermin32max8182 = lo_m3u8settings->get_timedmetadatapid( ).
lv___integermin0max65535 = lo_m3u8settings->get_transportstreamid( ).
lv___integermin32max8182 = lo_m3u8settings->get_videopid( ).
ENDIF.
lo_movsettings = lo_containersettings->get_movsettings( ).
IF lo_movsettings IS NOT INITIAL.
lv_movclapatom = lo_movsettings->get_clapatom( ).
lv_movcslgatom = lo_movsettings->get_cslgatom( ).
lv_movmpeg2fourcccontrol = lo_movsettings->get_mpeg2fourcccontrol( ).
lv_movpaddingcontrol = lo_movsettings->get_paddingcontrol( ).
lv_movreference = lo_movsettings->get_reference( ).
ENDIF.
lo_mp4settings = lo_containersettings->get_mp4settings( ).
IF lo_mp4settings IS NOT INITIAL.
lv_cmfcaudioduration = lo_mp4settings->get_audioduration( ).
lv_mp4c2pamanifest = lo_mp4settings->get_c2pamanifest( ).
lv___stringmin1max2048patt = lo_mp4settings->get_certificatesecret( ).
lv_mp4cslgatom = lo_mp4settings->get_cslgatom( ).
lv___integermin0max1 = lo_mp4settings->get_cttsversion( ).
lv_mp4freespacebox = lo_mp4settings->get_freespacebox( ).
lv_mp4moovplacement = lo_mp4settings->get_moovplacement( ).
lv___string = lo_mp4settings->get_mp4majorbrand( ).
lv___stringmin1patternarna = lo_mp4settings->get_signingkmskey( ).
ENDIF.
lo_mpdsettings = lo_containersettings->get_mpdsettings( ).
IF lo_mpdsettings IS NOT INITIAL.
lv_mpdaccessibilitycaption = lo_mpdsettings->get_accibilitycaptionhints( ).
lv_mpdaudioduration = lo_mpdsettings->get_audioduration( ).
lv_mpdcaptioncontainertype = lo_mpdsettings->get_captioncontainertype( ).
lv_mpdklvmetadata = lo_mpdsettings->get_klvmetadata( ).
lv_mpdmanifestmetadatasign = lo_mpdsettings->get_manifestmetsignaling( ).
lv_mpdscte35esam = lo_mpdsettings->get_scte35esam( ).
lv_mpdscte35source = lo_mpdsettings->get_scte35source( ).
lv_mpdtimedmetadata = lo_mpdsettings->get_timedmetadata( ).
lv_mpdtimedmetadataboxvers = lo_mpdsettings->get_timedmetadataboxversion( ).
lv___stringmax1000 = lo_mpdsettings->get_timedmetadataschemeiduri( ).
lv___stringmax1000 = lo_mpdsettings->get_timedmetadatavalue( ).
ENDIF.
lo_mxfsettings = lo_containersettings->get_mxfsettings( ).
IF lo_mxfsettings IS NOT INITIAL.
lv_mxfafdsignaling = lo_mxfsettings->get_afdsignaling( ).
lv_mxfprofile = lo_mxfsettings->get_profile( ).
lo_mxfxavcprofilesettings = lo_mxfsettings->get_xavcprofilesettings( ).
IF lo_mxfxavcprofilesettings IS NOT INITIAL.
lv_mxfxavcdurationmode = lo_mxfxavcprofilesettings->get_durationmode( ).
lv___integermin0max2147483 = lo_mxfxavcprofilesettings->get_maxancdatasize( ).
ENDIF.
ENDIF.
ENDIF.
lo_videodescription = lo_presetsettings->get_videodescription( ).
IF lo_videodescription IS NOT INITIAL.
lv_afdsignaling = lo_videodescription->get_afdsignaling( ).
lv_antialias = lo_videodescription->get_antialias( ).
lv_chromapositionmode = lo_videodescription->get_chromapositionmode( ).
lo_videocodecsettings = lo_videodescription->get_codecsettings( ).
IF lo_videocodecsettings IS NOT INITIAL.
lo_av1settings = lo_videocodecsettings->get_av1settings( ).
IF lo_av1settings IS NOT INITIAL.
lv_av1adaptivequantization = lo_av1settings->get_adaptivequantization( ).
lv_av1bitdepth = lo_av1settings->get_bitdepth( ).
lv_av1filmgrainsynthesis = lo_av1settings->get_filmgrainsynthesis( ).
lv_av1frameratecontrol = lo_av1settings->get_frameratecontrol( ).
lv_av1framerateconversiona = lo_av1settings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_av1settings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_av1settings->get_frameratenumerator( ).
lv___doublemin0 = lo_av1settings->get_gopsize( ).
lv___integermin1000max1152 = lo_av1settings->get_maxbitrate( ).
lv___integermin0max15 = lo_av1settings->get_nobframesbetweenrefere00( ).
LOOP AT lo_av1settings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lo_av1qvbrsettings = lo_av1settings->get_qvbrsettings( ).
IF lo_av1qvbrsettings IS NOT INITIAL.
lv___integermin1max10 = lo_av1qvbrsettings->get_qvbrqualitylevel( ).
lv___doublemin0max1 = lo_av1qvbrsettings->get_qvbrqualitylevelfinetune( ).
ENDIF.
lv_av1ratecontrolmode = lo_av1settings->get_ratecontrolmode( ).
lv___integermin1max32 = lo_av1settings->get_slices( ).
lv_av1spatialadaptivequant = lo_av1settings->get_spatialadaptivequantiz00( ).
ENDIF.
lo_avcintrasettings = lo_videocodecsettings->get_avcintrasettings( ).
IF lo_avcintrasettings IS NOT INITIAL.
lv_avcintraclass = lo_avcintrasettings->get_avcintraclass( ).
lo_avcintrauhdsettings = lo_avcintrasettings->get_avcintrauhdsettings( ).
IF lo_avcintrauhdsettings IS NOT INITIAL.
lv_avcintrauhdqualitytunin = lo_avcintrauhdsettings->get_qualitytuninglevel( ).
ENDIF.
lv_avcintraframeratecontro = lo_avcintrasettings->get_frameratecontrol( ).
lv_avcintraframerateconver = lo_avcintrasettings->get_framerateconversionalg( ).
lv___integermin1max1001 = lo_avcintrasettings->get_frameratedenominator( ).
lv___integermin24max60000 = lo_avcintrasettings->get_frameratenumerator( ).
lv_avcintrainterlacemode = lo_avcintrasettings->get_interlacemode( ).
LOOP AT lo_avcintrasettings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lv_avcintrascantypeconvers = lo_avcintrasettings->get_scantypeconversionmode( ).
lv_avcintraslowpal = lo_avcintrasettings->get_slowpal( ).
lv_avcintratelecine = lo_avcintrasettings->get_telecine( ).
ENDIF.
lv_videocodec = lo_videocodecsettings->get_codec( ).
lo_framecapturesettings = lo_videocodecsettings->get_framecapturesettings( ).
IF lo_framecapturesettings IS NOT INITIAL.
lv___integermin1max2147483 = lo_framecapturesettings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_framecapturesettings->get_frameratenumerator( ).
lv___integermin1max1000000 = lo_framecapturesettings->get_maxcaptures( ).
lv___integermin1max100 = lo_framecapturesettings->get_quality( ).
ENDIF.
lo_gifsettings = lo_videocodecsettings->get_gifsettings( ).
IF lo_gifsettings IS NOT INITIAL.
lv_gifframeratecontrol = lo_gifsettings->get_frameratecontrol( ).
lv_gifframerateconversiona = lo_gifsettings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_gifsettings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_gifsettings->get_frameratenumerator( ).
ENDIF.
lo_h264settings = lo_videocodecsettings->get_h264settings( ).
IF lo_h264settings IS NOT INITIAL.
lv_h264adaptivequantizatio = lo_h264settings->get_adaptivequantization( ).
lo_bandwidthreductionfilte = lo_h264settings->get_bandwidthreductionfilter( ).
IF lo_bandwidthreductionfilte IS NOT INITIAL.
lv_bandwidthreductionfilte_1 = lo_bandwidthreductionfilte->get_sharpening( ).
lv_bandwidthreductionfilte_2 = lo_bandwidthreductionfilte->get_strength( ).
ENDIF.
lv___integermin1000max1152 = lo_h264settings->get_bitrate( ).
lv_h264codeclevel = lo_h264settings->get_codeclevel( ).
lv_h264codecprofile = lo_h264settings->get_codecprofile( ).
lv_h264dynamicsubgop = lo_h264settings->get_dynamicsubgop( ).
lv_h264endofstreammarkers = lo_h264settings->get_endofstreammarkers( ).
lv_h264entropyencoding = lo_h264settings->get_entropyencoding( ).
lv_h264fieldencoding = lo_h264settings->get_fieldencoding( ).
lv_h264flickeradaptivequan = lo_h264settings->get_flickeradaptivequantiz00( ).
lv_h264frameratecontrol = lo_h264settings->get_frameratecontrol( ).
lv_h264framerateconversion = lo_h264settings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_h264settings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_h264settings->get_frameratenumerator( ).
lv_h264gopbreference = lo_h264settings->get_gopbreference( ).
lv___integermin0max2147483 = lo_h264settings->get_gopclosedcadence( ).
lv___doublemin0 = lo_h264settings->get_gopsize( ).
lv_h264gopsizeunits = lo_h264settings->get_gopsizeunits( ).
lv___integermin0max100 = lo_h264settings->get_hrdbufferfinalfillperc00( ).
lv___integermin0max100 = lo_h264settings->get_hrdbufferinitialfillpe00( ).
lv___integermin0max1152000 = lo_h264settings->get_hrdbuffersize( ).
lv_h264interlacemode = lo_h264settings->get_interlacemode( ).
lv___integermin1000max1152 = lo_h264settings->get_maxbitrate( ).
lv___integermin0max30 = lo_h264settings->get_miniinterval( ).
lv___integermin0max7 = lo_h264settings->get_nobframesbetweenrefere00( ).
lv___integermin1max6 = lo_h264settings->get_numberreferenceframes( ).
lv_h264parcontrol = lo_h264settings->get_parcontrol( ).
lv___integermin1max2147483 = lo_h264settings->get_pardenominator( ).
lv___integermin1max2147483 = lo_h264settings->get_parnumerator( ).
LOOP AT lo_h264settings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lv_h264qualitytuninglevel = lo_h264settings->get_qualitytuninglevel( ).
lo_h264qvbrsettings = lo_h264settings->get_qvbrsettings( ).
IF lo_h264qvbrsettings IS NOT INITIAL.
lv___integermin1000max1152 = lo_h264qvbrsettings->get_maxaveragebitrate( ).
lv___integermin1max10 = lo_h264qvbrsettings->get_qvbrqualitylevel( ).
lv___doublemin0max1 = lo_h264qvbrsettings->get_qvbrqualitylevelfinetune( ).
ENDIF.
lv_h264ratecontrolmode = lo_h264settings->get_ratecontrolmode( ).
lv_h264repeatpps = lo_h264settings->get_repeatpps( ).
lv_h264saliencyawareencodi = lo_h264settings->get_saliencyawareencoding( ).
lv_h264scantypeconversionm = lo_h264settings->get_scantypeconversionmode( ).
lv_h264scenechangedetect = lo_h264settings->get_scenechangedetect( ).
lv___integermin1max32 = lo_h264settings->get_slices( ).
lv_h264slowpal = lo_h264settings->get_slowpal( ).
lv___integermin0max128 = lo_h264settings->get_softness( ).
lv_h264spatialadaptivequan = lo_h264settings->get_spatialadaptivequantiz00( ).
lv_h264syntax = lo_h264settings->get_syntax( ).
lv_h264telecine = lo_h264settings->get_telecine( ).
lv_h264temporaladaptivequa = lo_h264settings->get_temporaladaptivequanti00( ).
lv_h264unregisteredseitime = lo_h264settings->get_unregisteredseitimecode( ).
lv_h264writemp4packagingty = lo_h264settings->get_writemp4packagingtype( ).
ENDIF.
lo_h265settings = lo_videocodecsettings->get_h265settings( ).
IF lo_h265settings IS NOT INITIAL.
lv_h265adaptivequantizatio = lo_h265settings->get_adaptivequantization( ).
lv_h265alternatetransferfu = lo_h265settings->get_alternatetransferfuncsei( ).
lo_bandwidthreductionfilte = lo_h265settings->get_bandwidthreductionfilter( ).
IF lo_bandwidthreductionfilte IS NOT INITIAL.
lv_bandwidthreductionfilte_1 = lo_bandwidthreductionfilte->get_sharpening( ).
lv_bandwidthreductionfilte_2 = lo_bandwidthreductionfilte->get_strength( ).
ENDIF.
lv___integermin1000max1466 = lo_h265settings->get_bitrate( ).
lv_h265codeclevel = lo_h265settings->get_codeclevel( ).
lv_h265codecprofile = lo_h265settings->get_codecprofile( ).
lv_h265deblocking = lo_h265settings->get_deblocking( ).
lv_h265dynamicsubgop = lo_h265settings->get_dynamicsubgop( ).
lv_h265endofstreammarkers = lo_h265settings->get_endofstreammarkers( ).
lv_h265flickeradaptivequan = lo_h265settings->get_flickeradaptivequantiz00( ).
lv_h265frameratecontrol = lo_h265settings->get_frameratecontrol( ).
lv_h265framerateconversion = lo_h265settings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_h265settings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_h265settings->get_frameratenumerator( ).
lv_h265gopbreference = lo_h265settings->get_gopbreference( ).
lv___integermin0max2147483 = lo_h265settings->get_gopclosedcadence( ).
lv___doublemin0 = lo_h265settings->get_gopsize( ).
lv_h265gopsizeunits = lo_h265settings->get_gopsizeunits( ).
lv___integermin0max100 = lo_h265settings->get_hrdbufferfinalfillperc00( ).
lv___integermin0max100 = lo_h265settings->get_hrdbufferinitialfillpe00( ).
lv___integermin0max1466400 = lo_h265settings->get_hrdbuffersize( ).
lv_h265interlacemode = lo_h265settings->get_interlacemode( ).
lv___integermin1000max1466 = lo_h265settings->get_maxbitrate( ).
lv___integermin0max30 = lo_h265settings->get_miniinterval( ).
lv___integermin0max7 = lo_h265settings->get_nobframesbetweenrefere00( ).
lv___integermin1max6 = lo_h265settings->get_numberreferenceframes( ).
lv_h265parcontrol = lo_h265settings->get_parcontrol( ).
lv___integermin1max2147483 = lo_h265settings->get_pardenominator( ).
lv___integermin1max2147483 = lo_h265settings->get_parnumerator( ).
LOOP AT lo_h265settings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lv_h265qualitytuninglevel = lo_h265settings->get_qualitytuninglevel( ).
lo_h265qvbrsettings = lo_h265settings->get_qvbrsettings( ).
IF lo_h265qvbrsettings IS NOT INITIAL.
lv___integermin1000max1466 = lo_h265qvbrsettings->get_maxaveragebitrate( ).
lv___integermin1max10 = lo_h265qvbrsettings->get_qvbrqualitylevel( ).
lv___doublemin0max1 = lo_h265qvbrsettings->get_qvbrqualitylevelfinetune( ).
ENDIF.
lv_h265ratecontrolmode = lo_h265settings->get_ratecontrolmode( ).
lv_h265sampleadaptiveoffse = lo_h265settings->get_sampleadaptiveofffiltmde( ).
lv_h265scantypeconversionm = lo_h265settings->get_scantypeconversionmode( ).
lv_h265scenechangedetect = lo_h265settings->get_scenechangedetect( ).
lv___integermin1max32 = lo_h265settings->get_slices( ).
lv_h265slowpal = lo_h265settings->get_slowpal( ).
lv_h265spatialadaptivequan = lo_h265settings->get_spatialadaptivequantiz00( ).
lv_h265telecine = lo_h265settings->get_telecine( ).
lv_h265temporaladaptivequa = lo_h265settings->get_temporaladaptivequanti00( ).
lv_h265temporalids = lo_h265settings->get_temporalids( ).
lv_h265tiles = lo_h265settings->get_tiles( ).
lv_h265unregisteredseitime = lo_h265settings->get_unregisteredseitimecode( ).
lv_h265writemp4packagingty = lo_h265settings->get_writemp4packagingtype( ).
ENDIF.
lo_mpeg2settings = lo_videocodecsettings->get_mpeg2settings( ).
IF lo_mpeg2settings IS NOT INITIAL.
lv_mpeg2adaptivequantizati = lo_mpeg2settings->get_adaptivequantization( ).
lv___integermin1000max2880 = lo_mpeg2settings->get_bitrate( ).
lv_mpeg2codeclevel = lo_mpeg2settings->get_codeclevel( ).
lv_mpeg2codecprofile = lo_mpeg2settings->get_codecprofile( ).
lv_mpeg2dynamicsubgop = lo_mpeg2settings->get_dynamicsubgop( ).
lv_mpeg2frameratecontrol = lo_mpeg2settings->get_frameratecontrol( ).
lv_mpeg2framerateconversio = lo_mpeg2settings->get_framerateconversionalg( ).
lv___integermin1max1001 = lo_mpeg2settings->get_frameratedenominator( ).
lv___integermin24max60000 = lo_mpeg2settings->get_frameratenumerator( ).
lv___integermin0max2147483 = lo_mpeg2settings->get_gopclosedcadence( ).
lv___doublemin0 = lo_mpeg2settings->get_gopsize( ).
lv_mpeg2gopsizeunits = lo_mpeg2settings->get_gopsizeunits( ).
lv___integermin0max100 = lo_mpeg2settings->get_hrdbufferfinalfillperc00( ).
lv___integermin0max100 = lo_mpeg2settings->get_hrdbufferinitialfillpe00( ).
lv___integermin0max4718592 = lo_mpeg2settings->get_hrdbuffersize( ).
lv_mpeg2interlacemode = lo_mpeg2settings->get_interlacemode( ).
lv_mpeg2intradcprecision = lo_mpeg2settings->get_intradcprecision( ).
lv___integermin1000max3000_1 = lo_mpeg2settings->get_maxbitrate( ).
lv___integermin0max30 = lo_mpeg2settings->get_miniinterval( ).
lv___integermin0max7 = lo_mpeg2settings->get_nobframesbetweenrefere00( ).
lv_mpeg2parcontrol = lo_mpeg2settings->get_parcontrol( ).
lv___integermin1max2147483 = lo_mpeg2settings->get_pardenominator( ).
lv___integermin1max2147483 = lo_mpeg2settings->get_parnumerator( ).
LOOP AT lo_mpeg2settings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lv_mpeg2qualitytuninglevel = lo_mpeg2settings->get_qualitytuninglevel( ).
lv_mpeg2ratecontrolmode = lo_mpeg2settings->get_ratecontrolmode( ).
lv_mpeg2scantypeconversion = lo_mpeg2settings->get_scantypeconversionmode( ).
lv_mpeg2scenechangedetect = lo_mpeg2settings->get_scenechangedetect( ).
lv_mpeg2slowpal = lo_mpeg2settings->get_slowpal( ).
lv___integermin0max128 = lo_mpeg2settings->get_softness( ).
lv_mpeg2spatialadaptivequa = lo_mpeg2settings->get_spatialadaptivequantiz00( ).
lv_mpeg2syntax = lo_mpeg2settings->get_syntax( ).
lv_mpeg2telecine = lo_mpeg2settings->get_telecine( ).
lv_mpeg2temporaladaptivequ = lo_mpeg2settings->get_temporaladaptivequanti00( ).
ENDIF.
lo_passthroughsettings = lo_videocodecsettings->get_passthroughsettings( ).
IF lo_passthroughsettings IS NOT INITIAL.
lv_videoselectormode = lo_passthroughsettings->get_videoselectormode( ).
ENDIF.
lo_proressettings = lo_videocodecsettings->get_proressettings( ).
IF lo_proressettings IS NOT INITIAL.
lv_proreschromasampling = lo_proressettings->get_chromasampling( ).
lv_prorescodecprofile = lo_proressettings->get_codecprofile( ).
lv_proresframeratecontrol = lo_proressettings->get_frameratecontrol( ).
lv_proresframerateconversi = lo_proressettings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_proressettings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_proressettings->get_frameratenumerator( ).
lv_proresinterlacemode = lo_proressettings->get_interlacemode( ).
lv_proresparcontrol = lo_proressettings->get_parcontrol( ).
lv___integermin1max2147483 = lo_proressettings->get_pardenominator( ).
lv___integermin1max2147483 = lo_proressettings->get_parnumerator( ).
LOOP AT lo_proressettings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lv_proresscantypeconversio = lo_proressettings->get_scantypeconversionmode( ).
lv_proresslowpal = lo_proressettings->get_slowpal( ).
lv_prorestelecine = lo_proressettings->get_telecine( ).
ENDIF.
lo_uncompressedsettings = lo_videocodecsettings->get_uncompressedsettings( ).
IF lo_uncompressedsettings IS NOT INITIAL.
lv_uncompressedfourcc = lo_uncompressedsettings->get_fourcc( ).
lv_uncompressedframerateco = lo_uncompressedsettings->get_frameratecontrol( ).
lv_uncompressedframerateco_1 = lo_uncompressedsettings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_uncompressedsettings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_uncompressedsettings->get_frameratenumerator( ).
lv_uncompressedinterlacemo = lo_uncompressedsettings->get_interlacemode( ).
lv_uncompressedscantypecon = lo_uncompressedsettings->get_scantypeconversionmode( ).
lv_uncompressedslowpal = lo_uncompressedsettings->get_slowpal( ).
lv_uncompressedtelecine = lo_uncompressedsettings->get_telecine( ).
ENDIF.
lo_vc3settings = lo_videocodecsettings->get_vc3settings( ).
IF lo_vc3settings IS NOT INITIAL.
lv_vc3frameratecontrol = lo_vc3settings->get_frameratecontrol( ).
lv_vc3framerateconversiona = lo_vc3settings->get_framerateconversionalg( ).
lv___integermin1max1001 = lo_vc3settings->get_frameratedenominator( ).
lv___integermin24max60000 = lo_vc3settings->get_frameratenumerator( ).
lv_vc3interlacemode = lo_vc3settings->get_interlacemode( ).
lv_vc3scantypeconversionmo = lo_vc3settings->get_scantypeconversionmode( ).
lv_vc3slowpal = lo_vc3settings->get_slowpal( ).
lv_vc3telecine = lo_vc3settings->get_telecine( ).
lv_vc3class = lo_vc3settings->get_vc3class( ).
ENDIF.
lo_vp8settings = lo_videocodecsettings->get_vp8settings( ).
IF lo_vp8settings IS NOT INITIAL.
lv___integermin1000max1152 = lo_vp8settings->get_bitrate( ).
lv_vp8frameratecontrol = lo_vp8settings->get_frameratecontrol( ).
lv_vp8framerateconversiona = lo_vp8settings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_vp8settings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_vp8settings->get_frameratenumerator( ).
lv___doublemin0 = lo_vp8settings->get_gopsize( ).
lv___integermin0max4718592 = lo_vp8settings->get_hrdbuffersize( ).
lv___integermin1000max1152 = lo_vp8settings->get_maxbitrate( ).
lv_vp8parcontrol = lo_vp8settings->get_parcontrol( ).
lv___integermin1max2147483 = lo_vp8settings->get_pardenominator( ).
lv___integermin1max2147483 = lo_vp8settings->get_parnumerator( ).
lv_vp8qualitytuninglevel = lo_vp8settings->get_qualitytuninglevel( ).
lv_vp8ratecontrolmode = lo_vp8settings->get_ratecontrolmode( ).
ENDIF.
lo_vp9settings = lo_videocodecsettings->get_vp9settings( ).
IF lo_vp9settings IS NOT INITIAL.
lv___integermin1000max4800 = lo_vp9settings->get_bitrate( ).
lv_vp9frameratecontrol = lo_vp9settings->get_frameratecontrol( ).
lv_vp9framerateconversiona = lo_vp9settings->get_framerateconversionalg( ).
lv___integermin1max2147483 = lo_vp9settings->get_frameratedenominator( ).
lv___integermin1max2147483 = lo_vp9settings->get_frameratenumerator( ).
lv___doublemin0 = lo_vp9settings->get_gopsize( ).
lv___integermin0max4718592 = lo_vp9settings->get_hrdbuffersize( ).
lv___integermin1000max4800 = lo_vp9settings->get_maxbitrate( ).
lv_vp9parcontrol = lo_vp9settings->get_parcontrol( ).
lv___integermin1max2147483 = lo_vp9settings->get_pardenominator( ).
lv___integermin1max2147483 = lo_vp9settings->get_parnumerator( ).
lv_vp9qualitytuninglevel = lo_vp9settings->get_qualitytuninglevel( ).
lv_vp9ratecontrolmode = lo_vp9settings->get_ratecontrolmode( ).
ENDIF.
lo_xavcsettings = lo_videocodecsettings->get_xavcsettings( ).
IF lo_xavcsettings IS NOT INITIAL.
lv_xavcadaptivequantizatio = lo_xavcsettings->get_adaptivequantization( ).
lv_xavcentropyencoding = lo_xavcsettings->get_entropyencoding( ).
lv_xavcframeratecontrol = lo_xavcsettings->get_frameratecontrol( ).
lv_xavcframerateconversion = lo_xavcsettings->get_framerateconversionalg( ).
lv___integermin1max1001 = lo_xavcsettings->get_frameratedenominator( ).
lv___integermin24max60000 = lo_xavcsettings->get_frameratenumerator( ).
LOOP AT lo_xavcsettings->get_perframemetrics( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lv_framemetrictype = lo_row_19->get_value( ).
ENDIF.
ENDLOOP.
lv_xavcprofile = lo_xavcsettings->get_profile( ).
lv_xavcslowpal = lo_xavcsettings->get_slowpal( ).
lv___integermin0max128 = lo_xavcsettings->get_softness( ).
lv_xavcspatialadaptivequan = lo_xavcsettings->get_spatialadaptivequantiz00( ).
lv_xavctemporaladaptivequa = lo_xavcsettings->get_temporaladaptivequanti00( ).
lo_xavc4kintracbgprofilese = lo_xavcsettings->get_xavc4kintracbgpflstgs( ).
IF lo_xavc4kintracbgprofilese IS NOT INITIAL.
lv_xavc4kintracbgprofilecl = lo_xavc4kintracbgprofilese->get_xavcclass( ).
ENDIF.
lo_xavc4kintravbrprofilese = lo_xavcsettings->get_xavc4kintravbrpflstgs( ).
IF lo_xavc4kintravbrprofilese IS NOT INITIAL.
lv_xavc4kintravbrprofilecl = lo_xavc4kintravbrprofilese->get_xavcclass( ).
ENDIF.
lo_xavc4kprofilesettings = lo_xavcsettings->get_xavc4kprofilesettings( ).
IF lo_xavc4kprofilesettings IS NOT INITIAL.
lv_xavc4kprofilebitratecla = lo_xavc4kprofilesettings->get_bitrateclass( ).
lv_xavc4kprofilecodecprofi = lo_xavc4kprofilesettings->get_codecprofile( ).
lv_xavcflickeradaptivequan = lo_xavc4kprofilesettings->get_flickeradaptivequantiz00( ).
lv_xavcgopbreference = lo_xavc4kprofilesettings->get_gopbreference( ).
lv___integermin0max2147483 = lo_xavc4kprofilesettings->get_gopclosedcadence( ).
lv___integermin0max1152000 = lo_xavc4kprofilesettings->get_hrdbuffersize( ).
lv_xavc4kprofilequalitytun = lo_xavc4kprofilesettings->get_qualitytuninglevel( ).
lv___integermin8max12 = lo_xavc4kprofilesettings->get_slices( ).
ENDIF.
lo_xavchdintracbgprofilese = lo_xavcsettings->get_xavchdintracbgpflstgs( ).
IF lo_xavchdintracbgprofilese IS NOT INITIAL.
lv_xavchdintracbgprofilecl = lo_xavchdintracbgprofilese->get_xavcclass( ).
ENDIF.
lo_xavchdprofilesettings = lo_xavcsettings->get_xavchdprofilesettings( ).
IF lo_xavchdprofilesettings IS NOT INITIAL.
lv_xavchdprofilebitratecla = lo_xavchdprofilesettings->get_bitrateclass( ).
lv_xavcflickeradaptivequan = lo_xavchdprofilesettings->get_flickeradaptivequantiz00( ).
lv_xavcgopbreference = lo_xavchdprofilesettings->get_gopbreference( ).
lv___integermin0max2147483 = lo_xavchdprofilesettings->get_gopclosedcadence( ).
lv___integermin0max1152000 = lo_xavchdprofilesettings->get_hrdbuffersize( ).
lv_xavcinterlacemode = lo_xavchdprofilesettings->get_interlacemode( ).
lv_xavchdprofilequalitytun = lo_xavchdprofilesettings->get_qualitytuninglevel( ).
lv___integermin4max12 = lo_xavchdprofilesettings->get_slices( ).
lv_xavchdprofiletelecine = lo_xavchdprofilesettings->get_telecine( ).
ENDIF.
ENDIF.
ENDIF.
lv_colormetadata = lo_videodescription->get_colormetadata( ).
lo_rectangle = lo_videodescription->get_crop( ).
IF lo_rectangle IS NOT INITIAL.
lv___integermin2max2147483 = lo_rectangle->get_height( ).
lv___integermin2max2147483 = lo_rectangle->get_width( ).
lv___integermin0max2147483 = lo_rectangle->get_x( ).
lv___integermin0max2147483 = lo_rectangle->get_y( ).
ENDIF.
lv_dropframetimecode = lo_videodescription->get_dropframetimecode( ).
lv___integermin0max15 = lo_videodescription->get_fixedafd( ).
lv___integermin32max8192 = lo_videodescription->get_height( ).
lo_rectangle = lo_videodescription->get_position( ).
IF lo_rectangle IS NOT INITIAL.
lv___integermin2max2147483 = lo_rectangle->get_height( ).
lv___integermin2max2147483 = lo_rectangle->get_width( ).
lv___integermin0max2147483 = lo_rectangle->get_x( ).
lv___integermin0max2147483 = lo_rectangle->get_y( ).
ENDIF.
lv_respondtoafd = lo_videodescription->get_respondtoafd( ).
lv_scalingbehavior = lo_videodescription->get_scalingbehavior( ).
lv___integermin0max100 = lo_videodescription->get_sharpness( ).
lv_videotimecodeinsertion = lo_videodescription->get_timecodeinsertion( ).
lv_timecodetrack = lo_videodescription->get_timecodetrack( ).
lo_videopreprocessor = lo_videodescription->get_videopreprocessors( ).
IF lo_videopreprocessor IS NOT INITIAL.
lo_colorcorrector = lo_videopreprocessor->get_colorcorrector( ).
IF lo_colorcorrector IS NOT INITIAL.
lv___integermin1max100 = lo_colorcorrector->get_brightness( ).
lo_cliplimits = lo_colorcorrector->get_cliplimits( ).
IF lo_cliplimits IS NOT INITIAL.
lv___integermin90max105 = lo_cliplimits->get_maximumrgbtolerance( ).
lv___integermin920max1023 = lo_cliplimits->get_maximumyuv( ).
lv___integerminnegative5ma = lo_cliplimits->get_minimumrgbtolerance( ).
lv___integermin0max128 = lo_cliplimits->get_minimumyuv( ).
ENDIF.
lv_colorspaceconversion = lo_colorcorrector->get_colorspaceconversion( ).
lv___integermin1max100 = lo_colorcorrector->get_contrast( ).
lo_hdr10metadata = lo_colorcorrector->get_hdr10metadata( ).
IF lo_hdr10metadata IS NOT INITIAL.
lv___integermin0max50000 = lo_hdr10metadata->get_blueprimaryx( ).
lv___integermin0max50000 = lo_hdr10metadata->get_blueprimaryy( ).
lv___integermin0max50000 = lo_hdr10metadata->get_greenprimaryx( ).
lv___integermin0max50000 = lo_hdr10metadata->get_greenprimaryy( ).
lv___integermin0max65535 = lo_hdr10metadata->get_maxcontentlightlevel( ).
lv___integermin0max65535 = lo_hdr10metadata->get_maxframeaveragelightle00( ).
lv___integermin0max2147483 = lo_hdr10metadata->get_maxluminance( ).
lv___integermin0max2147483 = lo_hdr10metadata->get_minluminance( ).
lv___integermin0max50000 = lo_hdr10metadata->get_redprimaryx( ).
lv___integermin0max50000 = lo_hdr10metadata->get_redprimaryy( ).
lv___integermin0max50000 = lo_hdr10metadata->get_whitepointx( ).
lv___integermin0max50000 = lo_hdr10metadata->get_whitepointy( ).
ENDIF.
lv_hdrtosdrtonemapper = lo_colorcorrector->get_hdrtosdrtonemapper( ).
lv___integerminnegative180 = lo_colorcorrector->get_hue( ).
lv___integermin0max2147483 = lo_colorcorrector->get_maxluminance( ).
lv_samplerangeconversion = lo_colorcorrector->get_samplerangeconversion( ).
lv___integermin1max100 = lo_colorcorrector->get_saturation( ).
lv___integermin100max1000 = lo_colorcorrector->get_sdrreferencewhitelevel( ).
ENDIF.
lo_deinterlacer = lo_videopreprocessor->get_deinterlacer( ).
IF lo_deinterlacer IS NOT INITIAL.
lv_deinterlacealgorithm = lo_deinterlacer->get_algorithm( ).
lv_deinterlacercontrol = lo_deinterlacer->get_control( ).
lv_deinterlacermode = lo_deinterlacer->get_mode( ).
ENDIF.
lo_dolbyvision = lo_videopreprocessor->get_dolbyvision( ).
IF lo_dolbyvision IS NOT INITIAL.
lo_dolbyvisionlevel6metada = lo_dolbyvision->get_l6metadata( ).
IF lo_dolbyvisionlevel6metada IS NOT INITIAL.
lv___integermin0max65535 = lo_dolbyvisionlevel6metada->get_maxcll( ).
lv___integermin0max65535 = lo_dolbyvisionlevel6metada->get_maxfall( ).
ENDIF.
lv_dolbyvisionlevel6mode = lo_dolbyvision->get_l6mode( ).
lv_dolbyvisionmapping = lo_dolbyvision->get_mapping( ).
lv_dolbyvisionprofile = lo_dolbyvision->get_profile( ).
ENDIF.
lo_hdr10plus = lo_videopreprocessor->get_hdr10plus( ).
IF lo_hdr10plus IS NOT INITIAL.
lv___integermin0max4000 = lo_hdr10plus->get_masteringmonitornits( ).
lv___integermin0max4000 = lo_hdr10plus->get_targetmonitornits( ).
ENDIF.
lo_imageinserter = lo_videopreprocessor->get_imageinserter( ).
IF lo_imageinserter IS NOT INITIAL.
LOOP AT lo_imageinserter->get_insertableimages( ) into lo_row_20.
lo_row_21 = lo_row_20.
IF lo_row_21 IS NOT INITIAL.
lv___integermin0max2147483 = lo_row_21->get_duration( ).
lv___integermin0max2147483 = lo_row_21->get_fadein( ).
lv___integermin0max2147483 = lo_row_21->get_fadeout( ).
lv___integermin0max2147483 = lo_row_21->get_height( ).
lv___stringmin14patterns3b = lo_row_21->get_imageinserterinput( ).
lv___integermin0max2147483 = lo_row_21->get_imagex( ).
lv___integermin0max2147483 = lo_row_21->get_imagey( ).
lv___integermin0max99 = lo_row_21->get_layer( ).
lv___integermin0max100 = lo_row_21->get_opacity( ).
lv___stringpattern01d20305 = lo_row_21->get_starttime( ).
lv___integermin0max2147483 = lo_row_21->get_width( ).
ENDIF.
ENDLOOP.
lv___integermin100max1000 = lo_imageinserter->get_sdrreferencewhitelevel( ).
ENDIF.
lo_noisereducer = lo_videopreprocessor->get_noisereducer( ).
IF lo_noisereducer IS NOT INITIAL.
lv_noisereducerfilter = lo_noisereducer->get_filter( ).
lo_noisereducerfiltersetti = lo_noisereducer->get_filtersettings( ).
IF lo_noisereducerfiltersetti IS NOT INITIAL.
lv___integermin0max3 = lo_noisereducerfiltersetti->get_strength( ).
ENDIF.
lo_noisereducerspatialfilt = lo_noisereducer->get_spatialfiltersettings( ).
IF lo_noisereducerspatialfilt IS NOT INITIAL.
lv___integermin0max3 = lo_noisereducerspatialfilt->get_postfiltsharpenstrength( ).
lv___integerminnegative2ma = lo_noisereducerspatialfilt->get_speed( ).
lv___integermin0max16 = lo_noisereducerspatialfilt->get_strength( ).
ENDIF.
lo_noisereducertemporalfil = lo_noisereducer->get_temporalfiltersettings( ).
IF lo_noisereducertemporalfil IS NOT INITIAL.
lv___integermin0max4 = lo_noisereducertemporalfil->get_aggressivemode( ).
lv_noisefilterposttemporal = lo_noisereducertemporalfil->get_posttemporalsharpening( ).
lv_noisefilterposttemporal_1 = lo_noisereducertemporalfil->get_posttemporalsharpening00( ).
lv___integerminnegative1ma_1 = lo_noisereducertemporalfil->get_speed( ).
lv___integermin0max16 = lo_noisereducertemporalfil->get_strength( ).
ENDIF.
ENDIF.
lo_partnerwatermarking = lo_videopreprocessor->get_partnerwatermarking( ).
IF lo_partnerwatermarking IS NOT INITIAL.
lo_nexguardfilemarkersetti = lo_partnerwatermarking->get_nexguardfilemarkerstgs( ).
IF lo_nexguardfilemarkersetti IS NOT INITIAL.
lv___stringmin1max100000 = lo_nexguardfilemarkersetti->get_license( ).
lv___integermin0max4194303 = lo_nexguardfilemarkersetti->get_payload( ).
lv___stringmin1max256 = lo_nexguardfilemarkersetti->get_preset( ).
lv_watermarkingstrength = lo_nexguardfilemarkersetti->get_strength( ).
ENDIF.
ENDIF.
lo_timecodeburnin = lo_videopreprocessor->get_timecodeburnin( ).
IF lo_timecodeburnin IS NOT INITIAL.
lv___integermin10max48 = lo_timecodeburnin->get_fontsize( ).
lv_timecodeburninposition = lo_timecodeburnin->get_position( ).
lv___stringpattern = lo_timecodeburnin->get_prefix( ).
ENDIF.
ENDIF.
lv___integermin32max8192 = lo_videodescription->get_width( ).
ENDIF.
ENDIF.
lv_type = lo_row_1->get_type( ).
ENDIF.
ENDLOOP.
ENDIF.