diff options
author | jstebbins <[email protected]> | 2008-09-02 22:56:19 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-02 22:56:19 +0000 |
commit | 45cabbfe4ab8b95b5f25a236f8c93b64d3ccf8df (patch) | |
tree | 40326771d4a7f4721363e3b76ebfca5329595deb /gtk/src/widget_deps | |
parent | fd744170cb1da2675e1168402866f5c20f08a726 (diff) |
LinGui: Presets and preferences are now stored as plists
This will also make saving/restoring the queue much easier.
It's a scary big change. 1400 new lines of code. Due to efficiencies
of a better desing, 2400 lines of old code also gets refactored
down to 1600. Giving a final net +600 lines.
Along the way, I stumbled across a couple bugs and fixed them.
Chapter list entry would get wedged under certain circumstances.
Pausing encoding didn't display pause message in status bar.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1662 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/widget_deps')
-rw-r--r-- | gtk/src/widget_deps | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/gtk/src/widget_deps b/gtk/src/widget_deps new file mode 100644 index 000000000..228acd329 --- /dev/null +++ b/gtk/src/widget_deps @@ -0,0 +1,123 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>anamorphic</key> + <array> + <string>keep_aspect</string> + <string>scale_height</string> + </array> + <key>audio_codec</key> + <array> + <string>audio_bitrate</string> + <string>audio_rate</string> + <string>audio_mix</string> + <string>audio_drc</string> + </array> + <key>autocrop</key> + <array> + <string>crop_top</string> + <string>crop_bottom</string> + <string>crop_left</string> + <string>crop_right</string> + </array> + <key>autoscale</key> + <array> + <string>scale_width</string> + <string>scale_height</string> + </array> + <key>chapter_markers</key> + <array> + <string>chapters_list</string> + </array> + <key>container</key> + <array> + <string>large_mp4</string> + <string>http_optimize_mp4</string> + <string>ipod_file</string> + <string>variable_frame_rate</string> + </array> + <key>decomb</key> + <array> + <string>deinterlace</string> + <string>tweak_deinterlace</string> + </array> + <key>keep_aspect</key> + <array> + <string>scale_height</string> + </array> + <key>title</key> + <array> + <string>queue_add</string> + <string>queue_add_menu</string> + <string>preview_button</string> + <string>show_preview_menu</string> + <string>preview_frame</string> + <string>picture_label</string> + <string>picture_tab</string> + <string>chapters_label</string> + <string>chapters_tab</string> + <string>title</string> + <string>start_chapter</string> + <string>end_chapter</string> + </array> + <key>two_pass</key> + <array> + <string>turbo</string> + </array> + <key>variable_frame_rate</key> + <array> + <string>framerate</string> + <string>detelecine</string> + </array> + <key>video_codec</key> + <array> + <string>x264_tab</string> + <string>x264_tab_label</string> + <string>ipod_file</string> + </array> + <key>vquality_type_bitrate</key> + <array> + <string>video_bitrate</string> + </array> + <key>vquality_type_constant</key> + <array> + <string>video_quality</string> + <string>constant_rate_factor</string> + <string>two_pass</string> + <string>turbo</string> + </array> + <key>vquality_type_target</key> + <array> + <string>video_target_size</string> + </array> + <key>x264_analyse</key> + <array> + <string>x264_direct</string> + </array> + <key>x264_bframes</key> + <array> + <string>x264_weighted_bframes</string> + <string>x264_brdo</string> + <string>x264_bime</string> + <string>x264_bpyramid</string> + <string>x264_direct</string> + </array> + <key>x264_cabac</key> + <array> + <string>x264_trellis</string> + </array> + <key>x264_me</key> + <array> + <string>x264_merange</string> + </array> + <key>x264_refs</key> + <array> + <string>x264_mixed_refs</string> + </array> + <key>x264_subme</key> + <array> + <string>x264_brdo</string> + </array> +</dict> +</plist> |