summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
Diffstat (limited to 'libhb')
-rw-r--r--libhb/decmpeg2.c4
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;