comparison libmpdemux/aviheader.c @ 29288:4a1c217a844b

In all demux_info_add calls change "name" to "title". Currently "name" and "title" are both used at random, this makes it consistent. "title" was chosen because it is less ambiguous and also the get_meta_title slave mode command uses that (there is no get_meta_name command).
author reimar
date Sat, 30 May 2009 13:18:57 +0000
parents 0f1b5b68af32
children 5babc40c26de
comparison
equal deleted inserted replaced
29287:8b0f2c4971f4 29288:4a1c217a844b
165 // IMED - Decribes the original subject of the file, such as 165 // IMED - Decribes the original subject of the file, such as
166 // "computer image," "drawing," "lithograph," and so on. 166 // "computer image," "drawing," "lithograph," and so on.
167 case mmioFOURCC('I','M','E','D'): hdr="Medium";break; 167 case mmioFOURCC('I','M','E','D'): hdr="Medium";break;
168 // INAM - Stores the title of the subject of the file, such as 168 // INAM - Stores the title of the subject of the file, such as
169 // "Seattle from Above." 169 // "Seattle from Above."
170 case mmioFOURCC('I','N','A','M'): hdr="Name";break; 170 case mmioFOURCC('I','N','A','M'): hdr="Title";break;
171 // IPLT - Specifies the number of colors requested when digitizing 171 // IPLT - Specifies the number of colors requested when digitizing
172 // an image, such as "256." 172 // an image, such as "256."
173 case mmioFOURCC('I','P','L','T'): hdr="Palette Setting";break; 173 case mmioFOURCC('I','P','L','T'): hdr="Palette Setting";break;
174 // IPRD - Specifies the name of title the file was originally intended 174 // IPRD - Specifies the name of title the file was originally intended
175 // for, such as "Encyclopedia of Pacific Northwest Geography." 175 // for, such as "Encyclopedia of Pacific Northwest Geography."