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/stream.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/stream.c')
-rw-r--r-- | libhb/stream.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 1cb45fcad..6378da3a2 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -49,8 +49,8 @@ typedef struct { static const stream2codec_t st2codec[256] = { st(0x00, U, 0, 0, NULL), - st(0x01, V, WORK_DECMPEG2, 0, "MPEG1"), - st(0x02, V, WORK_DECMPEG2, AV_CODEC_ID_MPEG2VIDEO, "MPEG2"), + st(0x01, V, WORK_DECAVCODEC, AV_CODEC_ID_MPEG2VIDEO, "MPEG1"), + st(0x02, V, WORK_DECAVCODEC, AV_CODEC_ID_MPEG2VIDEO, "MPEG2"), st(0x03, A, HB_ACODEC_FFMPEG, AV_CODEC_ID_MP2, "MPEG1"), st(0x04, A, HB_ACODEC_FFMPEG, AV_CODEC_ID_MP2, "MPEG2"), st(0x05, N, 0, 0, "ISO 13818-1 private section"), @@ -4211,12 +4211,12 @@ static int do_probe( hb_pes_stream_t *pes, hb_buffer_t *buf ) switch ( codec->id ) { case AV_CODEC_ID_MPEG1VIDEO: - pes->codec = WORK_DECMPEG2; + pes->codec = WORK_DECAVCODECV; pes->stream_type = 0x01; break; case AV_CODEC_ID_MPEG2VIDEO: - pes->codec = WORK_DECMPEG2; + pes->codec = WORK_DECAVCODECV; pes->stream_type = 0x02; break; |