comparison utils.c @ 3318:f63630e08b59 libavformat

cosmetics: indentation
author aurel
date Fri, 23 May 2008 11:46:05 +0000
parents 841f0bc7857c
children 4bf98e198eec
comparison
equal deleted inserted replaced
3317:841f0bc7857c 3318:f63630e08b59
2238 { 2238 {
2239 AVChapter *chapter = av_mallocz(sizeof(AVChapter)); 2239 AVChapter *chapter = av_mallocz(sizeof(AVChapter));
2240 if(!chapter) 2240 if(!chapter)
2241 return AVERROR(ENOMEM); 2241 return AVERROR(ENOMEM);
2242 if (title) 2242 if (title)
2243 chapter->title = av_strdup(title); 2243 chapter->title = av_strdup(title);
2244 chapter->start = start; 2244 chapter->start = start;
2245 chapter->end = end; 2245 chapter->end = end;
2246 2246
2247 dynarray_add(&s->chapters, &s->num_chapters, chapter); 2247 dynarray_add(&s->chapters, &s->num_chapters, chapter);
2248 2248