comparison movenc.c @ 1240:504be467b795 libavformat

detailed infos about d263 atom
author bcoudurier
date Mon, 07 Aug 2006 15:04:15 +0000
parents 18130af77b09
children 11fbe0326131
comparison
equal deleted inserted replaced
1239:18130af77b09 1240:504be467b795
395 static int mov_write_d263_tag(ByteIOContext *pb) 395 static int mov_write_d263_tag(ByteIOContext *pb)
396 { 396 {
397 put_be32(pb, 0xf); /* size */ 397 put_be32(pb, 0xf); /* size */
398 put_tag(pb, "d263"); 398 put_tag(pb, "d263");
399 put_tag(pb, "FFMP"); 399 put_tag(pb, "FFMP");
400 put_be16(pb, 0x0a); 400 put_byte(pb, 0); /* decoder version */
401 put_byte(pb, 0); 401 /* FIXME use AVCodecContext level/profile, when encoder will set values */
402 put_byte(pb, 0xa); /* level */
403 put_byte(pb, 0); /* profile */
402 return 0xf; 404 return 0xf;
403 } 405 }
404 406
405 /* TODO: No idea about these values */ 407 /* TODO: No idea about these values */
406 static int mov_write_svq3_tag(ByteIOContext *pb) 408 static int mov_write_svq3_tag(ByteIOContext *pb)