diff options
author | jstebbins <[email protected]> | 2014-01-13 18:43:07 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-01-13 18:43:07 +0000 |
commit | 1d137b47c62a47a4a08f13fc2bd8207633464fd5 (patch) | |
tree | bb7c5c62e67d079a4c66220f25a0c6df3e2438af /libhb/common.c | |
parent | cd00b6f50ede70a9edef1785dd8c74e1d3ab4dad (diff) |
remove contrib mpeg2dec
We no longer need mpeg2dec. libav now has all the features we need
for mpeg2 decoding.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5966 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index 720770a5d..a0e6b7a58 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -2808,7 +2808,8 @@ hb_title_t * hb_title_init( char * path, int index ) strcat( t->path, path ); // default to decoding mpeg2 t->video_id = 0xE0; - t->video_codec = WORK_DECMPEG2; + t->video_codec = WORK_DECAVCODECV; + t->video_codec_param = AV_CODEC_ID_MPEG2VIDEO; t->angle_count = 1; t->pixel_aspect_width = 1; t->pixel_aspect_height = 1; |