diff options
author | jbrjake <[email protected]> | 2008-02-12 15:31:38 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-02-12 15:31:38 +0000 |
commit | d23b4a9d185944e5bbf036a0b5b83d5bc14ba98b (patch) | |
tree | 63681e874d9c84af53366a393f625b28ebfb3841 /libhb | |
parent | 30dc1b01185b5fe69d620ad62d43a7fc20d8f6d8 (diff) |
Refer to transitions in the presence-or-lack-thereof of progressive flags on MPEG-2 frames as Film->Video or vice versa instead of Progressive->Interlaced. Slightly more accurate, and will make future comb detection of previews less confusing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1256 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/decmpeg2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/decmpeg2.c b/libhb/decmpeg2.c index e2deae0ce..917d2a947 100644 --- a/libhb/decmpeg2.c +++ b/libhb/decmpeg2.c @@ -276,9 +276,9 @@ int hb_libmpeg2_decode( hb_libmpeg2_t * m, hb_buffer_t * buf_es, } if ( (cadence[2] <= TB) && (cadence[1] <= TB) && (cadence[0] > TB) && (cadence[11]) ) - hb_log("%fs: Interlaced -> Progressive", (float)buf->start / 90000); + hb_log("%fs: Video -> Film", (float)buf->start / 90000); if ( (cadence[2] > TB) && (cadence[1] <= TB) && (cadence[0] <= TB) && (cadence[11]) ) - hb_log("%fs: Progressive -> Interlaced", (float)buf->start / 90000); + hb_log("%fs: Film -> Video", (float)buf->start / 90000); /* Store picture flags for later use by filters */ buf->flags = m->info->display_picture->flags; |