OSDN Git Service

Refer to transitions in the presence-or-lack-thereof of progressive flags on MPEG...
authorjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 12 Feb 2008 15:31:38 +0000 (15:31 +0000)
committerjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 12 Feb 2008 15:31:38 +0000 (15:31 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@1256 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/decmpeg2.c

index e2deae0..917d2a9 100644 (file)
@@ -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;