summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-04-01 16:34:24 +0000
committerRodeo <[email protected]>2013-04-01 16:34:24 +0000
commitd9ff0abbbcbd0dda62a82c212acf56c05fc88859 (patch)
tree969671967f66742c23665e1c9972b8c080d123cb /libhb
parentb37e7f1b4078fa478424a80fbaf1f56639e50eaa (diff)
Remove unnecessary legacy HB_VCODEC define and minor cleanup.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5370 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/common.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/libhb/common.h b/libhb/common.h
index bfd4b9b00..401427460 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -354,13 +354,12 @@ struct hb_job_s
pass: 0, 1 or 2 (or -1 for scan)
advanced_opts: string of extra advanced encoder options
areBframes: boolean to note if b-frames are included in advanced_opts */
-#define HB_VCODEC_MASK 0x0000FF
-#define HB_VCODEC_X264 0x000001
-#define HB_VCODEC_THEORA 0x000002
-#define HB_VCODEC_FFMPEG_MPEG4 0x000010
-#define HB_VCODEC_FFMPEG HB_VCODEC_FFMPEG_MPEG4
-#define HB_VCODEC_FFMPEG_MPEG2 0x000020
-#define HB_VCODEC_FFMPEG_MASK 0x0000F0
+#define HB_VCODEC_MASK 0x00000FF
+#define HB_VCODEC_X264 0x0000001
+#define HB_VCODEC_THEORA 0x0000002
+#define HB_VCODEC_FFMPEG_MPEG4 0x0000010
+#define HB_VCODEC_FFMPEG_MPEG2 0x0000020
+#define HB_VCODEC_FFMPEG_MASK 0x00000F0
int vcodec;
float vquality;