diff options
author | jbrjake <[email protected]> | 2008-06-04 03:08:53 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-06-04 03:08:53 +0000 |
commit | 9f5c03a4bb522f1df63b52190461fc46366ba2c9 (patch) | |
tree | b8a8df3542f9d5df266b428a319fe8bcdc67dc2b /libhb/common.h | |
parent | aaf1354a3a4e07edb4416df53e66126aaebe89fb (diff) |
Keep track of the input pixel aspect ratio as well as the output one. Hopefully doesn't break anything.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1489 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index d7728770e..0e531d922 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -437,6 +437,8 @@ struct hb_title_s int width; int height; int aspect; + int pixel_aspect_width; + int pixel_aspect_height; int rate; int rate_base; int crop[4]; @@ -521,6 +523,8 @@ typedef struct hb_work_info_s struct { // info only valid for video decoders int width; int height; + int pixel_aspect_width; + int pixel_aspect_height; double aspect; }; struct { // info only valid for audio decoders |