diff options
author | saintdev <[email protected]> | 2008-03-20 02:40:02 +0000 |
---|---|---|
committer | saintdev <[email protected]> | 2008-03-20 02:40:02 +0000 |
commit | 3a3870d7ea1e81e1a145b1d555b9f0164860f9e3 (patch) | |
tree | 9243f518a3d3827ce2d85c28c4c426e22c780a6f /libhb/work.c | |
parent | 1cac31c9ed66396d3fc8a00e9fd75b5f56b000a0 (diff) |
Theora.
This adds the theora encoder to the Xcode project as well. It does not enable
anything in the Mac GUI, just allows it to build.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1350 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index c6357aeb6..9ebc33bf6 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -264,6 +264,10 @@ static void do_job( hb_job_t * job, int cpu_count ) hb_log( " + x264 options: %s", job->x264opts); w = getWork( WORK_ENCX264 ); break; + case HB_VCODEC_THEORA: + hb_log( " + encoder Theora" ); + w = getWork( WORK_ENCTHEORA ); + break; } w->fifo_in = job->fifo_render; w->fifo_out = job->fifo_mpeg4; |