diff options
author | Mans Rullgard <mans@mansr.com> | 2012-05-15 11:51:12 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-05-15 15:49:56 +0100 |
commit | db465be45d2a105c7bce3a301f125426c49e2e7c (patch) | |
tree | 53bb45b4de9ef9538839a39794e2ad1c5fd326a1 | |
parent | 0ff0af731ce4544f84b2f748dcc699717a2df8d6 (diff) | |
download | ffmpeg-db465be45d2a105c7bce3a301f125426c49e2e7c.tar.gz |
lavf: add mdec to is_intra_only() list
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 658da8f951..e51884774b 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -791,6 +791,7 @@ static int is_intra_only(AVCodecContext *enc){ case CODEC_ID_VCR1: case CODEC_ID_DNXHD: case CODEC_ID_JPEG2000: + case CODEC_ID_MDEC: return 1; default: break; } |