diff options
author | Rodeo <[email protected]> | 2014-01-07 11:41:35 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-01-07 11:41:35 +0000 |
commit | 5bf5ef4f102648396941e4a1d1ce4af36638d16b (patch) | |
tree | 5c6a30cf198e846c5893597e701417c74ea708af /libhb/bd.c | |
parent | 78d3ce52294d199cbf6f45d2372c2622589efaa7 (diff) |
parsecsv: always check result of malloc()
RebiewBoard #670.
Patch by icchan. Thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5957 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/bd.c')
-rw-r--r-- | libhb/bd.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libhb/bd.c b/libhb/bd.c index 4251d0403..7d2bab390 100644 --- a/libhb/bd.c +++ b/libhb/bd.c @@ -336,15 +336,6 @@ hb_title_t * hb_bd_title_scan( hb_bd_t * d, int tt, uint64_t min_duration ) "Unknown" ); - if ( bdvideo->coding_type == BLURAY_STREAM_TYPE_VIDEO_VC1 && - ( bdvideo->format == BLURAY_VIDEO_FORMAT_480I || - bdvideo->format == BLURAY_VIDEO_FORMAT_576I || - bdvideo->format == BLURAY_VIDEO_FORMAT_1080I ) ) - { - hb_log( "bd: Interlaced VC-1 not supported" ); - goto fail; - } - switch( bdvideo->coding_type ) { case BLURAY_STREAM_TYPE_VIDEO_MPEG1: |