OpenCores
URL https://opencores.org/ocsvn/mpeg2fpga/mpeg2fpga/trunk

Subversion Repositories mpeg2fpga

[/] [mpeg2fpga/] [trunk/] [doc/] [bilinear.lyx] - Blame information for rev 3

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 kdv
#LyX 1.5.5 created this file. For more info see http://www.lyx.org/
2
\lyxformat 276
3
\begin_document
4
\begin_header
5
\textclass scrbook
6
\begin_preamble
7
\usepackage{hyperref}
8
\end_preamble
9
\language english
10
\inputencoding auto
11
\font_roman default
12
\font_sans default
13
\font_typewriter default
14
\font_default_family default
15
\font_sc false
16
\font_osf false
17
\font_sf_scale 100
18
\font_tt_scale 100
19
\graphics default
20
\float_placement h
21
\paperfontsize default
22
\spacing single
23
\papersize default
24
\use_geometry false
25
\use_amsmath 0
26
\use_esint 0
27
\cite_engine basic
28
\use_bibtopic false
29
\paperorientation portrait
30
\secnumdepth 3
31
\tocdepth 3
32
\paragraph_separation indent
33
\defskip medskip
34
\quotes_language english
35
\papercolumns 1
36
\papersides 1
37
\paperpagestyle default
38
\tracking_changes false
39
\output_changes false
40
\author ""
41
\author ""
42
\end_header
43
 
44
\begin_body
45
 
46
\begin_layout Section*
47
Bilinear Chroma Upsampling
48
\end_layout
49
 
50
\begin_layout Standard
51
The chrominance components have half the vertical and half the horizontal
52
 resolution of the luminance.
53
 To obtain equal chrominance and luminance resolution, bilinear chroma upsamplin
54
g is used.
55
 Bilinear chroma upsampling computes chroma pixel values by vertical and
56
 horizontal interpolation.
57
 Vertical interpolation implies adding two rows of chroma values with different
58
 weights.
59
 The chroma row closest to the luma row gets weight 3/4, while the chroma
60
 row farthest from the luma row gets weight 1/4.
61
 Figures
62
\begin_inset LatexCommand ref
63
reference "fig:Frame-picture,-progressive"
64
 
65
\end_inset
66
 
67
,
68
\begin_inset LatexCommand ref
69
reference "fig:Top-field,-progressive"
70
 
71
\end_inset
72
 
73
 and
74
\begin_inset LatexCommand ref
75
reference "fig:Bottom-field,-progressive"
76
 
77
\end_inset
78
 
79
 illustrate these weights for progressive pictures, while figures
80
\begin_inset LatexCommand ref
81
reference "fig:Top-field,-interlaced"
82
 
83
\end_inset
84
 
85
 and
86
\begin_inset LatexCommand ref
87
reference "fig:Bottom-field,-interlaced"
88
 
89
\end_inset
90
 
91
 show the weights for interlaced pictures.
92
 
93
\end_layout
94
 
95
\begin_layout Standard
96
In figures
97
\begin_inset LatexCommand ref
98
reference "fig:Frame-picture,-progressive"
99
 
100
\end_inset
101
 
102
 to
103
\begin_inset LatexCommand ref
104
reference "fig:Bottom-field,-interlaced"
105
 
106
\end_inset
107
 
108
,
109
\end_layout
110
 
111
\begin_layout Itemize
112
00 refers to the first row of luma values of the current macroblock,
113
\end_layout
114
 
115
\begin_layout Itemize
116
15 refers to the last row of luma values of the current macroblock,
117
\end_layout
118
 
119
\begin_layout Itemize
120
c-1 refers to the last row of chroma values of the macroblock one macroblock
121
 row up,
122
\end_layout
123
 
124
\begin_layout Itemize
125
c0 refers to the first row of chroma values of the current macroblock,
126
\end_layout
127
 
128
\begin_layout Itemize
129
c7 refers to the last row of chroma values of the current macroblock,
130
\end_layout
131
 
132
\begin_layout Itemize
133
c8 refers to the first row of chroma values of the macroblock one macroblock
134
 row down.
135
\end_layout
136
 
137
\begin_layout Standard
138
The corresponding source file is
139
\family typewriter
140
resample_bilinear.v
141
\family default
142
.
143
\end_layout
144
 
145
\begin_layout Standard
146
\begin_inset Float figure
147
wide false
148
sideways false
149
status open
150
 
151
\begin_layout LyX-Code
152
                                        | 3/4 1/4
153
\end_layout
154
 
155
\begin_layout LyX-Code
156
                                        |
157
\end_layout
158
 
159
\begin_layout LyX-Code
160
00  x x x x x x x x x x x x x x x x     | c0  c-1
161
\end_layout
162
 
163
\begin_layout LyX-Code
164
c0  c   c   c   c   c   c   c   c       |
165
\end_layout
166
 
167
\begin_layout LyX-Code
168
01  x x x x x x x x x x x x x x x x     | c0  c1
169
\end_layout
170
 
171
\begin_layout LyX-Code
172
                                        |
173
\end_layout
174
 
175
\begin_layout LyX-Code
176
02  x x x x x x x x x x x x x x x x     | c1  c0
177
\end_layout
178
 
179
\begin_layout LyX-Code
180
c1  c   c   c   c   c   c   c   c       |
181
\end_layout
182
 
183
\begin_layout LyX-Code
184
03  x x x x x x x x x x x x x x x x     | c1  c2
185
\end_layout
186
 
187
\begin_layout LyX-Code
188
                                        |
189
\end_layout
190
 
191
\begin_layout LyX-Code
192
04  x x x x x x x x x x x x x x x x     | c2  c1
193
\end_layout
194
 
195
\begin_layout LyX-Code
196
c2  c   c   c   c   c   c   c   c       |
197
\end_layout
198
 
199
\begin_layout LyX-Code
200
05  x x x x x x x x x x x x x x x x     | c2  c3
201
\end_layout
202
 
203
\begin_layout LyX-Code
204
                                        |
205
\end_layout
206
 
207
\begin_layout LyX-Code
208
06  x x x x x x x x x x x x x x x x     | c3  c2
209
\end_layout
210
 
211
\begin_layout LyX-Code
212
c3  c   c   c   c   c   c   c   c       |
213
\end_layout
214
 
215
\begin_layout LyX-Code
216
07  x x x x x x x x x x x x x x x x     | c3  c4
217
\end_layout
218
 
219
\begin_layout LyX-Code
220
                                        |
221
\end_layout
222
 
223
\begin_layout LyX-Code
224
08  x x x x x x x x x x x x x x x x     | c4  c3
225
\end_layout
226
 
227
\begin_layout LyX-Code
228
c4  c   c   c   c   c   c   c   c       |
229
\end_layout
230
 
231
\begin_layout LyX-Code
232
09  x x x x x x x x x x x x x x x x     | c4  c5
233
\end_layout
234
 
235
\begin_layout LyX-Code
236
                                        |
237
\end_layout
238
 
239
\begin_layout LyX-Code
240
10  x x x x x x x x x x x x x x x x     | c5  c4
241
\end_layout
242
 
243
\begin_layout LyX-Code
244
c5  c   c   c   c   c   c   c   c       |
245
\end_layout
246
 
247
\begin_layout LyX-Code
248
11  x x x x x x x x x x x x x x x x     | c5  c6
249
\end_layout
250
 
251
\begin_layout LyX-Code
252
                                        |
253
\end_layout
254
 
255
\begin_layout LyX-Code
256
12  x x x x x x x x x x x x x x x x     | c6  c5
257
\end_layout
258
 
259
\begin_layout LyX-Code
260
c6  c   c   c   c   c   c   c   c       |
261
\end_layout
262
 
263
\begin_layout LyX-Code
264
13  x x x x x x x x x x x x x x x x     | c6  c7
265
\end_layout
266
 
267
\begin_layout LyX-Code
268
                                        |
269
\end_layout
270
 
271
\begin_layout LyX-Code
272
14  x x x x x x x x x x x x x x x x     | c7  c6
273
\end_layout
274
 
275
\begin_layout LyX-Code
276
c7  c   c   c   c   c   c   c   c       |
277
\end_layout
278
 
279
\begin_layout LyX-Code
280
15  x x x x x x x x x x x x x x x x     | c7  c8
281
\end_layout
282
 
283
\begin_layout LyX-Code
284
                                        |
285
\end_layout
286
 
287
\begin_layout LyX-Code
288
                                        |
289
\end_layout
290
 
291
\begin_layout Standard
292
\begin_inset Caption
293
 
294
\begin_layout Standard
295
\begin_inset LatexCommand label
296
name "fig:Frame-picture,-progressive"
297
 
298
\end_inset
299
 
300
Frame picture, progressive upsampling
301
\end_layout
302
 
303
\end_inset
304
 
305
 
306
\end_layout
307
 
308
\end_inset
309
 
310
 
311
\end_layout
312
 
313
\begin_layout LyX-Code
314
\begin_inset Float figure
315
wide false
316
sideways false
317
status open
318
 
319
\begin_layout LyX-Code
320
                                        | 3/4 1/4
321
\end_layout
322
 
323
\begin_layout LyX-Code
324
                                        |
325
\end_layout
326
 
327
\begin_layout LyX-Code
328
00  x x x x x x x x x x x x x x x x     | c0  c-1
329
\end_layout
330
 
331
\begin_layout LyX-Code
332
c0  c   c   c   c   c   c   c   c       |
333
\end_layout
334
 
335
\begin_layout LyX-Code
336
                                        |
337
\end_layout
338
 
339
\begin_layout LyX-Code
340
                                        |
341
\end_layout
342
 
343
\begin_layout LyX-Code
344
02  x x x x x x x x x x x x x x x x     | c1  c0
345
\end_layout
346
 
347
\begin_layout LyX-Code
348
c1  c   c   c   c   c   c   c   c       |
349
\end_layout
350
 
351
\begin_layout LyX-Code
352
                                        |
353
\end_layout
354
 
355
\begin_layout LyX-Code
356
                                        |
357
\end_layout
358
 
359
\begin_layout LyX-Code
360
04  x x x x x x x x x x x x x x x x     | c2  c1
361
\end_layout
362
 
363
\begin_layout LyX-Code
364
c2  c   c   c   c   c   c   c   c       |
365
\end_layout
366
 
367
\begin_layout LyX-Code
368
                                        |
369
\end_layout
370
 
371
\begin_layout LyX-Code
372
                                        |
373
\end_layout
374
 
375
\begin_layout LyX-Code
376
06  x x x x x x x x x x x x x x x x     | c3  c2
377
\end_layout
378
 
379
\begin_layout LyX-Code
380
c3  c   c   c   c   c   c   c   c       |
381
\end_layout
382
 
383
\begin_layout LyX-Code
384
                                        |
385
\end_layout
386
 
387
\begin_layout LyX-Code
388
                                        |
389
\end_layout
390
 
391
\begin_layout LyX-Code
392
08  x x x x x x x x x x x x x x x x     | c4  c3
393
\end_layout
394
 
395
\begin_layout LyX-Code
396
c4  c   c   c   c   c   c   c   c       |
397
\end_layout
398
 
399
\begin_layout LyX-Code
400
                                        |
401
\end_layout
402
 
403
\begin_layout LyX-Code
404
                                        |
405
\end_layout
406
 
407
\begin_layout LyX-Code
408
10  x x x x x x x x x x x x x x x x     | c5  c4
409
\end_layout
410
 
411
\begin_layout LyX-Code
412
c5  c   c   c   c   c   c   c   c       |
413
\end_layout
414
 
415
\begin_layout LyX-Code
416
                                        |
417
\end_layout
418
 
419
\begin_layout LyX-Code
420
                                        |
421
\end_layout
422
 
423
\begin_layout LyX-Code
424
12  x x x x x x x x x x x x x x x x     | c6  c5
425
\end_layout
426
 
427
\begin_layout LyX-Code
428
c6  c   c   c   c   c   c   c   c       |
429
\end_layout
430
 
431
\begin_layout LyX-Code
432
                                        |
433
\end_layout
434
 
435
\begin_layout LyX-Code
436
                                        |
437
\end_layout
438
 
439
\begin_layout LyX-Code
440
14  x x x x x x x x x x x x x x x x     | c7  c6
441
\end_layout
442
 
443
\begin_layout LyX-Code
444
c7  c   c   c   c   c   c   c   c       |
445
\end_layout
446
 
447
\begin_layout LyX-Code
448
                                        |
449
\end_layout
450
 
451
\begin_layout LyX-Code
452
                                        |
453
\end_layout
454
 
455
\begin_layout Standard
456
\begin_inset Caption
457
 
458
\begin_layout Standard
459
\begin_inset LatexCommand label
460
name "fig:Top-field,-progressive"
461
 
462
\end_inset
463
 
464
Top field, progressive upsampling
465
\end_layout
466
 
467
\end_inset
468
 
469
 
470
\end_layout
471
 
472
\end_inset
473
 
474
 
475
\end_layout
476
 
477
\begin_layout LyX-Code
478
\begin_inset Float figure
479
wide false
480
sideways false
481
status open
482
 
483
\begin_layout LyX-Code
484
                                        | 3/4 1/4
485
\end_layout
486
 
487
\begin_layout LyX-Code
488
                                        |
489
\end_layout
490
 
491
\begin_layout LyX-Code
492
                                        |
493
\end_layout
494
 
495
\begin_layout LyX-Code
496
c0  c   c   c   c   c   c   c   c       |
497
\end_layout
498
 
499
\begin_layout LyX-Code
500
01  x x x x x x x x x x x x x x x x     | c0  c1
501
\end_layout
502
 
503
\begin_layout LyX-Code
504
                                        |
505
\end_layout
506
 
507
\begin_layout LyX-Code
508
                                        |
509
\end_layout
510
 
511
\begin_layout LyX-Code
512
c1  c   c   c   c   c   c   c   c       |
513
\end_layout
514
 
515
\begin_layout LyX-Code
516
03  x x x x x x x x x x x x x x x x     | c1  c2
517
\end_layout
518
 
519
\begin_layout LyX-Code
520
                                        |
521
\end_layout
522
 
523
\begin_layout LyX-Code
524
                                        |
525
\end_layout
526
 
527
\begin_layout LyX-Code
528
c2  c   c   c   c   c   c   c   c       |
529
\end_layout
530
 
531
\begin_layout LyX-Code
532
05  x x x x x x x x x x x x x x x x     | c2  c3
533
\end_layout
534
 
535
\begin_layout LyX-Code
536
                                        |
537
\end_layout
538
 
539
\begin_layout LyX-Code
540
                                        |
541
\end_layout
542
 
543
\begin_layout LyX-Code
544
c3  c   c   c   c   c   c   c   c       |
545
\end_layout
546
 
547
\begin_layout LyX-Code
548
07  x x x x x x x x x x x x x x x x     | c3  c4
549
\end_layout
550
 
551
\begin_layout LyX-Code
552
                                        |
553
\end_layout
554
 
555
\begin_layout LyX-Code
556
                                        |
557
\end_layout
558
 
559
\begin_layout LyX-Code
560
c4  c   c   c   c   c   c   c   c       |
561
\end_layout
562
 
563
\begin_layout LyX-Code
564
09  x x x x x x x x x x x x x x x x     | c4  c5
565
\end_layout
566
 
567
\begin_layout LyX-Code
568
                                        |
569
\end_layout
570
 
571
\begin_layout LyX-Code
572
                                        |
573
\end_layout
574
 
575
\begin_layout LyX-Code
576
c5  c   c   c   c   c   c   c   c       |
577
\end_layout
578
 
579
\begin_layout LyX-Code
580
11  x x x x x x x x x x x x x x x x     | c5  c6
581
\end_layout
582
 
583
\begin_layout LyX-Code
584
                                        |
585
\end_layout
586
 
587
\begin_layout LyX-Code
588
                                        |
589
\end_layout
590
 
591
\begin_layout LyX-Code
592
c6  c   c   c   c   c   c   c   c       |
593
\end_layout
594
 
595
\begin_layout LyX-Code
596
13  x x x x x x x x x x x x x x x x     | c6  c7
597
\end_layout
598
 
599
\begin_layout LyX-Code
600
                                        |
601
\end_layout
602
 
603
\begin_layout LyX-Code
604
                                        |
605
\end_layout
606
 
607
\begin_layout LyX-Code
608
c7  c   c   c   c   c   c   c   c       |
609
\end_layout
610
 
611
\begin_layout LyX-Code
612
15  x x x x x x x x x x x x x x x x     | c7  c8
613
\end_layout
614
 
615
\begin_layout LyX-Code
616
                                        |
617
\end_layout
618
 
619
\begin_layout LyX-Code
620
                                        |
621
\end_layout
622
 
623
\begin_layout Standard
624
\begin_inset Caption
625
 
626
\begin_layout Standard
627
\begin_inset LatexCommand label
628
name "fig:Bottom-field,-progressive"
629
 
630
\end_inset
631
 
632
Bottom field, progressive upsampling
633
\end_layout
634
 
635
\end_inset
636
 
637
 
638
\end_layout
639
 
640
\end_inset
641
 
642
 
643
\end_layout
644
 
645
\begin_layout LyX-Code
646
\begin_inset Float figure
647
wide false
648
sideways false
649
status open
650
 
651
\begin_layout LyX-Code
652
 
653
\end_layout
654
 
655
\begin_layout LyX-Code
656
                                        | 3/4 1/4
657
\end_layout
658
 
659
\begin_layout LyX-Code
660
                                        |
661
\end_layout
662
 
663
\begin_layout LyX-Code
664
00  x x x x x x x x x x x x x x x x     | c0  c-2
665
\end_layout
666
 
667
\begin_layout LyX-Code
668
                                        |
669
\end_layout
670
 
671
\begin_layout LyX-Code
672
c0  c   c   c   c   c   c   c   c       |
673
\end_layout
674
 
675
\begin_layout LyX-Code
676
                                        |
677
\end_layout
678
 
679
\begin_layout LyX-Code
680
02  x x x x x x x x x x x x x x x x     | c0  c2
681
\end_layout
682
 
683
\begin_layout LyX-Code
684
                                        |
685
\end_layout
686
 
687
\begin_layout LyX-Code
688
                                        |
689
\end_layout
690
 
691
\begin_layout LyX-Code
692
                                        |
693
\end_layout
694
 
695
\begin_layout LyX-Code
696
04  x x x x x x x x x x x x x x x x     | c2  c0
697
\end_layout
698
 
699
\begin_layout LyX-Code
700
                                        |
701
\end_layout
702
 
703
\begin_layout LyX-Code
704
c2  c   c   c   c   c   c   c   c       |
705
\end_layout
706
 
707
\begin_layout LyX-Code
708
                                        |
709
\end_layout
710
 
711
\begin_layout LyX-Code
712
06  x x x x x x x x x x x x x x x x     | c2  c4
713
\end_layout
714
 
715
\begin_layout LyX-Code
716
                                        |
717
\end_layout
718
 
719
\begin_layout LyX-Code
720
                                        |
721
\end_layout
722
 
723
\begin_layout LyX-Code
724
                                        |
725
\end_layout
726
 
727
\begin_layout LyX-Code
728
08  x x x x x x x x x x x x x x x x     | c4  c2
729
\end_layout
730
 
731
\begin_layout LyX-Code
732
                                        |
733
\end_layout
734
 
735
\begin_layout LyX-Code
736
c4  c   c   c   c   c   c   c   c       |
737
\end_layout
738
 
739
\begin_layout LyX-Code
740
                                        |
741
\end_layout
742
 
743
\begin_layout LyX-Code
744
10  x x x x x x x x x x x x x x x x     | c4  c6
745
\end_layout
746
 
747
\begin_layout LyX-Code
748
                                        |
749
\end_layout
750
 
751
\begin_layout LyX-Code
752
                                        |
753
\end_layout
754
 
755
\begin_layout LyX-Code
756
                                        |
757
\end_layout
758
 
759
\begin_layout LyX-Code
760
12  x x x x x x x x x x x x x x x x     | c6  c4
761
\end_layout
762
 
763
\begin_layout LyX-Code
764
                                        |
765
\end_layout
766
 
767
\begin_layout LyX-Code
768
c6  c   c   c   c   c   c   c   c       |
769
\end_layout
770
 
771
\begin_layout LyX-Code
772
                                        |
773
\end_layout
774
 
775
\begin_layout LyX-Code
776
14  x x x x x x x x x x x x x x x x     | c6  c8
777
\end_layout
778
 
779
\begin_layout LyX-Code
780
                                        |
781
\end_layout
782
 
783
\begin_layout LyX-Code
784
                                        |
785
\end_layout
786
 
787
\begin_layout Standard
788
\begin_inset Caption
789
 
790
\begin_layout Standard
791
\begin_inset LatexCommand label
792
name "fig:Top-field,-interlaced"
793
 
794
\end_inset
795
 
796
Top field, interlaced upsampling
797
\end_layout
798
 
799
\end_inset
800
 
801
 
802
\end_layout
803
 
804
\end_inset
805
 
806
 
807
\end_layout
808
 
809
\begin_layout LyX-Code
810
\begin_inset Float figure
811
wide false
812
sideways false
813
status open
814
 
815
\begin_layout LyX-Code
816
                                        | 3/4 1/4
817
\end_layout
818
 
819
\begin_layout LyX-Code
820
                                        |
821
\end_layout
822
 
823
\begin_layout LyX-Code
824
                                        |
825
\end_layout
826
 
827
\begin_layout LyX-Code
828
                                        |
829
\end_layout
830
 
831
\begin_layout LyX-Code
832
01  x x x x x x x x x x x x x x x x     | c1  c-1
833
\end_layout
834
 
835
\begin_layout LyX-Code
836
                                        |
837
\end_layout
838
 
839
\begin_layout LyX-Code
840
c1  c   c   c   c   c   c   c   c       |
841
\end_layout
842
 
843
\begin_layout LyX-Code
844
                                        |
845
\end_layout
846
 
847
\begin_layout LyX-Code
848
03  x x x x x x x x x x x x x x x x     | c1  c3
849
\end_layout
850
 
851
\begin_layout LyX-Code
852
                                        |
853
\end_layout
854
 
855
\begin_layout LyX-Code
856
                                        |
857
\end_layout
858
 
859
\begin_layout LyX-Code
860
                                        |
861
\end_layout
862
 
863
\begin_layout LyX-Code
864
05  x x x x x x x x x x x x x x x x     | c3  c1
865
\end_layout
866
 
867
\begin_layout LyX-Code
868
                                        |
869
\end_layout
870
 
871
\begin_layout LyX-Code
872
c3  c   c   c   c   c   c   c   c       |
873
\end_layout
874
 
875
\begin_layout LyX-Code
876
                                        |
877
\end_layout
878
 
879
\begin_layout LyX-Code
880
07  x x x x x x x x x x x x x x x x     | c3  c5
881
\end_layout
882
 
883
\begin_layout LyX-Code
884
                                        |
885
\end_layout
886
 
887
\begin_layout LyX-Code
888
                                        |
889
\end_layout
890
 
891
\begin_layout LyX-Code
892
                                        |
893
\end_layout
894
 
895
\begin_layout LyX-Code
896
09  x x x x x x x x x x x x x x x x     | c5  c3
897
\end_layout
898
 
899
\begin_layout LyX-Code
900
                                        |
901
\end_layout
902
 
903
\begin_layout LyX-Code
904
c5  c   c   c   c   c   c   c   c       |
905
\end_layout
906
 
907
\begin_layout LyX-Code
908
                                        |
909
\end_layout
910
 
911
\begin_layout LyX-Code
912
11  x x x x x x x x x x x x x x x x     | c5  c7
913
\end_layout
914
 
915
\begin_layout LyX-Code
916
                                        |
917
\end_layout
918
 
919
\begin_layout LyX-Code
920
                                        |
921
\end_layout
922
 
923
\begin_layout LyX-Code
924
                                        |
925
\end_layout
926
 
927
\begin_layout LyX-Code
928
13  x x x x x x x x x x x x x x x x     | c7  c5
929
\end_layout
930
 
931
\begin_layout LyX-Code
932
                                        |
933
\end_layout
934
 
935
\begin_layout LyX-Code
936
c7  c   c   c   c   c   c   c   c       |
937
\end_layout
938
 
939
\begin_layout LyX-Code
940
                                        |
941
\end_layout
942
 
943
\begin_layout LyX-Code
944
15  x x x x x x x x x x x x x x x x     | c7  c9
945
\end_layout
946
 
947
\begin_layout LyX-Code
948
                                        |
949
\end_layout
950
 
951
\begin_layout LyX-Code
952
                                        |
953
\end_layout
954
 
955
\begin_layout Standard
956
\begin_inset Caption
957
 
958
\begin_layout Standard
959
\begin_inset LatexCommand label
960
name "fig:Bottom-field,-interlaced"
961
 
962
\end_inset
963
 
964
Bottom field, interlaced upsampling
965
\end_layout
966
 
967
\end_inset
968
 
969
 
970
\end_layout
971
 
972
\end_inset
973
 
974
 
975
\end_layout
976
 
977
\begin_layout LyX-Code
978
 
979
\end_layout
980
 
981
\end_body
982
\end_document

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.