comparison nut.c @ 3120:ea5623a8efde libavformat

Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing of matroska and nut.
author eugeni
date Fri, 07 Mar 2008 19:25:09 +0000
parents 88e032ac11e7
children 6f61c3b36632
comparison
equal deleted inserted replaced
3119:b1caac2f77ad 3120:ea5623a8efde
66 if(node){ 66 if(node){
67 av_free(sp); 67 av_free(sp);
68 av_free(node); 68 av_free(node);
69 } 69 }
70 } 70 }
71
72 const Dispositions ff_nut_dispositions[] = {
73 {"default" , AV_DISPOSITION_DEFAULT},
74 {"dub" , AV_DISPOSITION_DUB},
75 {"original" , AV_DISPOSITION_ORIGINAL},
76 {"comment" , AV_DISPOSITION_COMMENT},
77 {"lyrics" , AV_DISPOSITION_LYRICS},
78 {"karaoke" , AV_DISPOSITION_KARAOKE},
79 {"" , 0}
80 };
81