Mercurial > libavformat.hg
changeset 1026:3cf3b7a81b26 libavformat
dvcpro is 411p in fact
author | bcoudurier |
---|---|
date | Wed, 22 Mar 2006 16:49:05 +0000 |
parents | 95e8458ae120 |
children | 1579256f1418 |
files | movenc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/movenc.c Wed Mar 22 11:11:02 2006 +0000 +++ b/movenc.c Wed Mar 22 16:49:05 2006 +0000 @@ -606,9 +606,9 @@ if (track->enc->pix_fmt == PIX_FMT_YUV422P) tag = MKTAG('d', 'v', '5', 'p'); else if (track->enc->pix_fmt == PIX_FMT_YUV420P) - tag = MKTAG('d', 'v', 'p', 'p'); + tag = MKTAG('d', 'v', 'c', 'p'); else - tag = MKTAG('d', 'v', 'c', 'p'); + tag = MKTAG('d', 'v', 'p', 'p'); } } else { tag = codec_get_tag(codec_movvideo_tags, track->enc->codec_id);