• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/

Lines Matching refs:tokstart

34     char *tokstart, *tokend, *header_end;
59 for (tokstart = &header[strlen(Y4M_MAGIC) + 1];
60 tokstart < header_end; tokstart++) {
61 if (*tokstart == 0x20)
63 switch (*tokstart++) {
65 width = strtol(tokstart, &tokend, 10);
66 tokstart = tokend;
69 height = strtol(tokstart, &tokend, 10);
70 tokstart = tokend;
73 if (strncmp("420jpeg", tokstart, 7) == 0) {
76 } else if (strncmp("420mpeg2", tokstart, 8) == 0) {
79 } else if (strncmp("420paldv", tokstart, 8) == 0) {
82 } else if (strncmp("420p16", tokstart, 6) == 0) {
84 } else if (strncmp("422p16", tokstart, 6) == 0) {
86 } else if (strncmp("444p16", tokstart, 6) == 0) {
88 } else if (strncmp("420p14", tokstart, 6) == 0) {
90 } else if (strncmp("422p14", tokstart, 6) == 0) {
92 } else if (strncmp("444p14", tokstart, 6) == 0) {
94 } else if (strncmp("420p12", tokstart, 6) == 0) {
96 } else if (strncmp("422p12", tokstart, 6) == 0) {
98 } else if (strncmp("444p12", tokstart, 6) == 0) {
100 } else if (strncmp("420p10", tokstart, 6) == 0) {
102 } else if (strncmp("422p10", tokstart, 6) == 0) {
104 } else if (strncmp("444p10", tokstart, 6) == 0) {
106 } else if (strncmp("420p9", tokstart, 5) == 0) {
108 } else if (strncmp("422p9", tokstart, 5) == 0) {
110 } else if (strncmp("444p9", tokstart, 5) == 0) {
112 } else if (strncmp("420", tokstart, 3) == 0) {
115 } else if (strncmp("411", tokstart, 3) == 0) {
117 } else if (strncmp("422", tokstart, 3) == 0) {
119 } else if (strncmp("444alpha", tokstart, 8) == 0 ) {
123 } else if (strncmp("444", tokstart, 3) == 0) {
125 } else if (strncmp("mono16", tokstart, 6) == 0) {
127 } else if (strncmp("mono", tokstart, 4) == 0) {
134 while (tokstart < header_end && *tokstart != 0x20)
135 tokstart++;
138 switch (*tokstart++){
160 sscanf(tokstart, "%d:%d", &raten, &rated); // 0:0 if unknown
161 while (tokstart < header_end && *tokstart != 0x20)
162 tokstart++;
165 sscanf(tokstart, "%d:%d", &aspectn, &aspectd); // 0:0 if unknown
166 while (tokstart < header_end && *tokstart != 0x20)
167 tokstart++;
170 if (strncmp("YSCSS=", tokstart, 6) == 0) {
172 tokstart += 6;
173 if (strncmp("420JPEG", tokstart, 7) == 0)
175 else if (strncmp("420MPEG2", tokstart, 8) == 0)
177 else if (strncmp("420PALDV", tokstart, 8) == 0)
179 else if (strncmp("420P9", tokstart, 5) == 0)
181 else if (strncmp("422P9", tokstart, 5) == 0)
183 else if (strncmp("444P9", tokstart, 5) == 0)
185 else if (strncmp("420P10", tokstart, 6) == 0)
187 else if (strncmp("422P10", tokstart, 6) == 0)
189 else if (strncmp("444P10", tokstart, 6) == 0)
191 else if (strncmp("420P12", tokstart, 6) == 0)
193 else if (strncmp("422P12", tokstart, 6) == 0)
195 else if (strncmp("444P12", tokstart, 6) == 0)
197 else if (strncmp("420P14", tokstart, 6) == 0)
199 else if (strncmp("422P14", tokstart, 6) == 0)
201 else if (strncmp("444P14", tokstart, 6) == 0)
203 else if (strncmp("420P16", tokstart, 6) == 0)
205 else if (strncmp("422P16", tokstart, 6) == 0)
207 else if (strncmp("444P16", tokstart, 6) == 0)
209 else if (strncmp("411", tokstart, 3) == 0)
211 else if (strncmp("422", tokstart, 3) == 0)
213 else if (strncmp("444", tokstart, 3) == 0)
216 while (tokstart < header_end && *tokstart != 0x20)
217 tokstart++;