comparison matroskadec.c @ 3422:6ff296d8b284 libavformat

adjust comment to reality
author aurel
date Tue, 03 Jun 2008 15:14:21 +0000
parents 5667ba68090f
children 7a0230981402
comparison
equal deleted inserted replaced
3421:5667ba68090f 3422:6ff296d8b284
1026 if ((res = ebml_read_master(matroska, &id)) < 0) 1026 if ((res = ebml_read_master(matroska, &id)) < 0)
1027 return res; 1027 return res;
1028 1028
1029 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing track, adding stream..,\n"); 1029 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing track, adding stream..,\n");
1030 1030
1031 /* Allocate a generic track. As soon as we know its type we'll realloc. */ 1031 /* Allocate a generic track. */
1032 track = av_mallocz(MAX_TRACK_SIZE); 1032 track = av_mallocz(MAX_TRACK_SIZE);
1033 track->time_scale = 1.0; 1033 track->time_scale = 1.0;
1034 strcpy(track->language, "eng"); 1034 strcpy(track->language, "eng");
1035 1035
1036 /* try reading the trackentry headers */ 1036 /* try reading the trackentry headers */