diff options
author | Philip de Nier <philipn@rd.bbc.co.uk> | 2012-02-28 14:16:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-28 16:43:14 +0100 |
commit | 539a8469ae77cae0018409408457b9da2fd5a170 (patch) | |
tree | 10f947a02c17c83149a482095066d26d28e05043 | |
parent | 1ebc5e71a0310deae3e6dbf73b7eb7bfeb491998 (diff) | |
download | ffmpeg-539a8469ae77cae0018409408457b9da2fd5a170.tar.gz |
add v210 to intra only list to allow "-vcodec copy"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 51a37bd9e5..44cef9e8ab 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -820,6 +820,7 @@ static int is_intra_only(AVCodecContext *enc){ case CODEC_ID_LJPEG: case CODEC_ID_PRORES: case CODEC_ID_RAWVIDEO: + case CODEC_ID_V210: case CODEC_ID_DVVIDEO: case CODEC_ID_HUFFYUV: case CODEC_ID_FFVHUFF: |