comparison movenc.c @ 1026:3cf3b7a81b26 libavformat

dvcpro is 411p in fact
author bcoudurier
date Wed, 22 Mar 2006 16:49:05 +0000
parents 5fe94e61fdaa
children aa2712de50bf
comparison
equal deleted inserted replaced
1025:95e8458ae120 1026:3cf3b7a81b26
604 tag = MKTAG('d', 'v', 'c', ' '); 604 tag = MKTAG('d', 'v', 'c', ' ');
605 } else { /* assume PAL */ 605 } else { /* assume PAL */
606 if (track->enc->pix_fmt == PIX_FMT_YUV422P) 606 if (track->enc->pix_fmt == PIX_FMT_YUV422P)
607 tag = MKTAG('d', 'v', '5', 'p'); 607 tag = MKTAG('d', 'v', '5', 'p');
608 else if (track->enc->pix_fmt == PIX_FMT_YUV420P) 608 else if (track->enc->pix_fmt == PIX_FMT_YUV420P)
609 tag = MKTAG('d', 'v', 'c', 'p');
610 else
609 tag = MKTAG('d', 'v', 'p', 'p'); 611 tag = MKTAG('d', 'v', 'p', 'p');
610 else
611 tag = MKTAG('d', 'v', 'c', 'p');
612 } 612 }
613 } else { 613 } else {
614 tag = codec_get_tag(codec_movvideo_tags, track->enc->codec_id); 614 tag = codec_get_tag(codec_movvideo_tags, track->enc->codec_id);
615 } 615 }
616 } 616 }