Directory gtk/src/

Directory Created:
2008-06-17 16:40
Total Files:
87
Deleted Files:
40
Lines of Code:
39361

[root]/gtk/src
             icons (0 files, 0 lines)
                 hicolor (0 files, 0 lines)
                     128x128 (0 files, 0 lines)
                         apps (0 files, 0 lines)
                     16x16 (0 files, 0 lines)
                         apps (0 files, 0 lines)
                     32x32 (0 files, 0 lines)
                         apps (0 files, 0 lines)
                     64x64 (0 files, 0 lines)
                         apps (0 files, 0 lines)

Lines of Code

gtk/src/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 1606 (100.0%) 103283 (100.0%) 64.3
jstebbins 1563 (97.3%) 103279 (100.0%) 66.0
dynaflash 1 (0.1%) 4 (0.0%) 4.0
saintdev 42 (2.6%) 0 (0.0%) 0.0

Most Recent Commits

jstebbins 2010-07-03 19:24

fix some preset issues
add b-pyramid=none to appletv presets and remove b-pyramid hack from encx264.c
change samplerate from 48 to 'Auto' in all presets
cap samplerate to 48khz since none of the encoders support higher rates
remove obsolete UsesMaxPictureSettings from all presets. replace with UsesPictureSettings=2

9 lines of code changed in:

  • gtk/src: standard_presets.xml (+9 -25)
jstebbins 2010-06-29 01:15

LinGui: improvements to maxWidth/maxHeight preset gui
Add checkbox for each of max width/height entries in the presets save dialog.
When not checked, the value is not stored to the preset.
If neither is checked, UsesPictureSettings=2 is assumed.
If either is checked, UsesPictureSettings=1 is assumed.

270 lines of code changed in:

  • gtk/src: ghb.ui (+230 -63), makedeps.py (+2 -1), presets.c (+38 -6)
jstebbins 2010-06-28 16:59

LinGui: Add max width/height widgets to preset save dialog
These are only visible when autosize is disabled, meaning the user
has chosen to set specific video dimensions. These values are used
when a preset or title is loaded to set the default storage dimensions.

This allows setting arbitrary PictureWidth/PictureHeight in the preset
which was not previously possible. The values were previously limited
to what the currently loaded source would allow you to enter into
the picture settings width/height fields.

124 lines of code changed in:

  • gtk/src: callbacks.c (+1 -1), ghb.ui (+111 -4), hb-backend.c (+7 -10), hb-backend.h (+1), makedeps.py (+1), presets.c (+3 -18)
jstebbins 2010-06-26 23:54

LinGui: fix some issues with loading custom anamorphic settings from preset.
as the settings were incrementally loaded, each changing widget triggered
updates that could conflict with the preset values being loaded.

fix an issue with hight getting stuck at certain values. Incorrect rounding
caused a recalculation that put height back to it's previous value.

22 lines of code changed in:

  • gtk/src: callbacks.c (+2), hb-backend.c (+15 -14), presets.c (+4), settings.h (+1)
jstebbins 2010-06-24 22:43

LinGui: initialize picture width/height, even when there is no valid title
the ui widgets were just being set to 0 till a title was loaded.

10 lines of code changed in:

  • gtk/src: presets.c (+10)
jstebbins 2010-06-24 22:04

LinGui: fix audio preset initialization
sometimes audio settings were to being initialized correctly
to the values in the preset. some code that sets reasonable
values when the encoder changes from passthru to non-passthru
was getting invoked and overwriting the preset values.

41 lines of code changed in:

  • gtk/src: audiohandler.c (+22 -5), hb-backend.c (+18), hb-backend.h (+1)
jstebbins 2010-06-20 22:31

LinGui: fix aq-strength slider range. should be 0-2, not 0-1
Thanks Rodeo for pointing that out.

1 lines of code changed in:

  • gtk/src: ghb.ui (+1 -1)
jstebbins 2010-06-20 01:11

LinGui: Add jbrjake's new iPad preset

105 lines of code changed in:

  • gtk/src: presets.c (+3 -3), standard_presets.xml (+102 -13)
jstebbins 2010-06-18 21:09

LinGui: add peak framrate checkbox to video tab

25 lines of code changed in:

  • gtk/src: ghb.ui (+17 -2), hb-backend.c (+5 -1), internal_defaults.xml (+2), makedeps.py (+1)
jstebbins 2010-06-18 18:31

LinGui: change psy_trellis increments to 0.05

38 lines of code changed in:

  • gtk/src: ghb.ui (+6 -34), x264handler.c (+32)
jstebbins 2010-06-17 23:59

LinGui: revert part of the resource management changes of r3382
Since fedora's pygtk is broken, I can't parse gdk_pixbuf's with python.
So revert to doing this in C code.

40 lines of code changed in:

  • gtk/src: Makefile.am (+2 -2), create_resources.c (+36 -4), create_resources.py (+2 -3), icons.c (-29)
jstebbins 2010-06-15 17:21

LinGui: changes to resource preprocessor
During the build, I was compiling tools for preprocessing and packaging
the gui description xml, preset defaults, widget dependencies, and icons.
The resulting resource_data.h file gets compiled into the binary. These
tools are now implemented in python. This eliminates the need to compile
the tools which caused complications when cross compiling.

This work was actually done many months ago. But all the distributions
I wanted to support didn't have the libplist python module. Now they all
do.

30 lines of code changed in:

  • gtk/src: Makefile.am (+7 -7), icons.c (+1 -1), makedeps.py (+22 -24)
jstebbins 2010-06-15 17:15

LinGui: refresh x264 tab
updated layout, labeling & tooltips
group options by encoding features, analysis options, and psychovisual options
change b-pyramid from checkbox to combo box to support None, Strict, and Normal options
expand psy-rd slider range to 0-2 (was 0-1)
relabel "Analysis" to "Partitions".
Add new "Most" option to Partitions that is the same as the old "Some"
Change "Some" option of Partitions to mean i4x4:i8x8
add weightp combo
add adaptive quantization strength slider
remove weightb checkbox
remove no-fast-pskip checkbox

974 lines of code changed in:

  • gtk/src: ghb.ui (+755 -705), hb-backend.c (+57 -26), values.c (+11), widgetdeps.c (-2), x264handler.c (+151 -13)
jstebbins 2010-06-09 17:54

LinGui: initialize srt language with preferred language from prefernces
whenever a new srt is added to the subtitle list.

4 lines of code changed in:

  • gtk/src: subtitlehandler.c (+4 -2)
jstebbins 2010-06-08 06:18

LinGui: remove debug printf

0 lines of code changed in:

  • gtk/src: hb-backend.c (-1)
jstebbins 2010-06-08 02:37

LinGui: fix some problems i introduced with the recent audio tab changes

193 lines of code changed in:

  • gtk/src: audiohandler.c (+8 -4), hb-backend.c (+185 -51)
jstebbins 2010-06-07 22:49

LinGui: rework some of the logic behind the audio tab handler
gets rid of some duplication of values that i had. makes it
easier to keep the visible list and the data structures behind
it in sync.

179 lines of code changed in:

  • gtk/src: audiohandler.c (+84 -119), hb-backend.c (+78 -42), main.c (+2 -6), queuehandler.c (+15 -27)
jstebbins 2010-06-07 18:08

LinGui: fix stupid thinko in yesterdays audio panel changes

1 lines of code changed in:

  • gtk/src: hb-backend.c (+1 -1)
jstebbins 2010-06-06 21:35

LinGui: fix some spam in the log about hash item not found
audio encoder item wasn't always getting initialized

5 lines of code changed in:

  • gtk/src: audiohandler.c (+2), hb-backend.c (+1), internal_defaults.xml (+2)
jstebbins 2010-06-06 19:20

LinGui: Improvements to audio panel
When codec is "Choose for me", show the codec chosen in the list, but leave the combo
box showing "Choose for me". This way, if the user saves the settings in a new preset,
the audio codec saved remaines 'auto' instead of reverting to the codec that was chosen.

41 lines of code changed in:

  • gtk/src: audiohandler.c (+32 -14), hb-backend.c (+1 -1), main.c (+3 -2), widgetdeps.c (+5 -5)

(441 more)

Generated by StatSVN 0.3.0