diff options
-rw-r--r-- | libhb/common.c | 5 | ||||
-rw-r--r-- | libhb/work.c | 3 |
2 files changed, 1 insertions, 7 deletions
diff --git a/libhb/common.c b/libhb/common.c index 357405c6b..77be3bb96 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -3793,11 +3793,6 @@ int hb_subtitle_can_pass( int source, int mux ) return 0; } break; - case HB_MUX_MP4V2: - if (source == VOBSUB) - { - return 1; - } // fall through to next case... case HB_MUX_AV_MP4: switch( source ) { diff --git a/libhb/work.c b/libhb/work.c index 4825a1db4..72d4d294a 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -360,8 +360,7 @@ void hb_display_job_info(hb_job_t *job) } } - if (job->color_matrix_code && (job->vcodec == HB_VCODEC_X264 || - job->mux == HB_MUX_MP4V2)) + if (job->color_matrix_code && job->vcodec == HB_VCODEC_X264) { // color matrix is set: // 1) at the stream level (x264 only), |