diff options
Diffstat (limited to 'libhb/encavcodec.c')
-rw-r--r-- | libhb/encavcodec.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c index 5ae5a3929..eaf7b7020 100644 --- a/libhb/encavcodec.c +++ b/libhb/encavcodec.c @@ -115,14 +115,10 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) job->anamorphic.par_width, job->anamorphic.par_height ); } - if( job->mux & ( HB_MUX_MP4 | HB_MUX_PSP ) ) + if( job->mux & HB_MUX_MP4 ) { context->flags |= CODEC_FLAG_GLOBAL_HEADER; } - if( job->mux & HB_MUX_PSP ) - { - context->flags |= CODEC_FLAG_BITEXACT; - } if( job->grayscale ) { context->flags |= CODEC_FLAG_GRAY; @@ -164,7 +160,7 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) } pv->context = context; - if( ( job->mux & ( HB_MUX_MP4 | HB_MUX_PSP ) ) && job->pass != 1 ) + if( ( job->mux & HB_MUX_MP4 ) && job->pass != 1 ) { #if 0 /* Hem hem */ |