diff options
author | jbrjake <[email protected]> | 2008-08-01 17:12:37 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-08-01 17:12:37 +0000 |
commit | 7dde8068656d19ee95b0b9231e53d1c669806efe (patch) | |
tree | f1d8f8a1293d10427a638396062599255a17dc97 /libhb/stream.c | |
parent | b22fd6b62c3f13000d36f8badc297b872f5b7a45 (diff) |
Splits the display of job settings off from the actual work of beginning of a job, and reorganizes/elaborates the display's layout.
Adds new title variables to provide more description of sources: video_codec_name, video_bitrate (currently only used by DVD sources), and container_name and data_rate (currently only used by ffmpeg input sources).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1599 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/stream.c')
-rwxr-xr-x | libhb/stream.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index d4d1ea683..90b7ae37e 100755 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -2533,6 +2533,9 @@ static hb_title_t *ffmpeg_title_scan( hb_stream_t *stream ) } } + title->container_name = strdup( ic->iformat->name ); + title->data_rate = ic->bit_rate; + return title; } |