diff options
author | jstebbins <[email protected]> | 2011-09-24 01:16:28 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-09-24 01:16:28 +0000 |
commit | 3d237202e20af694df84ad73ae2f92145777c692 (patch) | |
tree | 90f63e58462878bbacec1fa3975db3c9411f3901 /libhb/internal.h | |
parent | 442f8efade3df7a34c52441c982c93aeb66b29e5 (diff) |
fix framerate detection for AVCHD-Lite
The AVCHD-Lite specification only supports 50 or 60 fps. So to get
25 or 30 fps, they double every frame using repeat flags. Detect
this and adjust the framerate accordingly.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4242 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index 6f6420a56..77ead967c 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -384,6 +384,8 @@ enum #define PIC_FLAG_PROGRESSIVE_FRAME 16 #endif +#define PIC_FLAG_REPEAT_FRAME 512 + extern hb_work_object_t * hb_objects; #define HB_WORK_IDLE 0 |