comparison nut.c @ 441:6635c1e75087 libavformat

bit-exact
author michael
date Mon, 12 Apr 2004 20:06:23 +0000
parents 50bae308f71e
children e17fb306b107
comparison
equal deleted inserted replaced
440:404fe714eea1 441:6635c1e75087
611 { 611 {
612 put_v(bc, 12); /* type */ 612 put_v(bc, 12); /* type */
613 put_str(bc, s->copyright); 613 put_str(bc, s->copyright);
614 } 614 }
615 /* encoder */ 615 /* encoder */
616 put_v(bc, 13); /* type */ 616 if(!(s->streams[0]->codec.flags & CODEC_FLAG_BITEXACT)){
617 put_str(bc, LIBAVFORMAT_IDENT); 617 put_v(bc, 13); /* type */
618 put_str(bc, LIBAVFORMAT_IDENT);
619 }
618 620
619 put_v(bc, 0); /* eof info */ 621 put_v(bc, 0); /* eof info */
620 update_packetheader(nut, bc, 0, 1); 622 update_packetheader(nut, bc, 0, 1);
621 623
622 put_flush_packet(bc); 624 put_flush_packet(bc);