diff options
author | jstebbins <[email protected]> | 2011-09-01 17:56:22 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-09-01 17:56:22 +0000 |
commit | a61a96e30bf2ac698dd8f59f7eaa156e6f7ab015 (patch) | |
tree | cb9c0fd75300d4e27b3943cc880fbcb9b33d618b /gtk/src/hb-backend.c | |
parent | 2a86ec4e31d5eddc17902ce225caaac39f84842e (diff) |
LinGui: Show video codec name in summary tab
I found myself wanting to know what the source video codec was when
I discovered that several of my VC-1 trancodes were crap. So this
adds the video codec name to the summary information I display on the
summary tab.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4197 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/hb-backend.c')
-rw-r--r-- | gtk/src/hb-backend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index ef7db6866..e6021c41d 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -3474,6 +3474,7 @@ ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex) title = hb_list_item( list, titleindex ); if (title == NULL) return FALSE; // Bad titleindex tinfo->index = titleindex; + tinfo->video_codec_name = title->video_codec_name; tinfo->width = title->width; tinfo->height = title->height; memcpy(tinfo->crop, title->crop, 4 * sizeof(int)); |