comparison matroska.c @ 1533:15482c2cd208 libavformat

cosmetics: reindent after last commit
author aurel
date Mon, 20 Nov 2006 00:33:47 +0000
parents 4eb3d2701215
children 4bf9dc98e127
comparison
equal deleted inserted replaced
1532:4eb3d2701215 1533:15482c2cd208
2536 n = laces-1; 2536 n = laces-1;
2537 break; 2537 break;
2538 } 2538 }
2539 memcpy (pkt->data, data+slice_offset, slice_size); 2539 memcpy (pkt->data, data+slice_offset, slice_size);
2540 2540
2541 if (n == 0) 2541 if (n == 0)
2542 pkt->flags = is_keyframe; 2542 pkt->flags = is_keyframe;
2543 pkt->stream_index = 2543 pkt->stream_index =
2544 matroska->tracks[track]->stream_index; 2544 matroska->tracks[track]->stream_index;
2545 2545
2546 pkt->pts = timecode; 2546 pkt->pts = timecode;
2547 pkt->pos= pos; 2547 pkt->pos = pos;
2548 2548
2549 matroska_queue_packet(matroska, pkt); 2549 matroska_queue_packet(matroska, pkt);
2550 } 2550 }
2551 data += lace_size[n]; 2551 data += lace_size[n];
2552 } 2552 }
2553 } 2553 }
2554 2554