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

Subversion Repositories mpeg2fpga

[/] [mpeg2fpga/] [trunk/] [doc/] [blockdiagram.ps] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 kdv
%!PS-Adobe-3.0 EPSF-3.0
2
%%Creator: uDraw(Graph) 3.1.1 (info available on http://www.b-novative.com/)
3
%%For: koen@154.red-83-49-151.dynamicip.rima-tde.net (on: Power Macintosh Darwin 8.10.1 unix)
4
%%Title: /Users/koen/Applications/uDrawGraph-3.1/graphs/mpeg2fpga.ps
5
%%CreationDate: Thu Nov  8 08:31:52 2007
6
%%BoundingBox: 0 0 595 842
7
%%Pages: 1
8
%%DocumentData: Clean7Bit
9
%%Orientation: Portrait
10
%%DocumentNeededResources: font Helvetica
11
%%+ font Helvetica-Bold
12
%%EndComments
13
 
14
%%BeginProlog
15
/CurrentEncoding [
16
/space/space/space/space/space/space/space/space
17
/space/space/space/space/space/space/space/space
18
/space/space/space/space/space/space/space/space
19
/space/space/space/space/space/space/space/space
20
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
21
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
22
/zero/one/two/three/four/five/six/seven
23
/eight/nine/colon/semicolon/less/equal/greater/question
24
/at/A/B/C/D/E/F/G
25
/H/I/J/K/L/M/N/O
26
/P/Q/R/S/T/U/V/W
27
/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
28
/grave/a/b/c/d/e/f/g
29
/h/i/j/k/l/m/n/o
30
/p/q/r/s/t/u/v/w
31
/x/y/z/braceleft/bar/braceright/asciitilde/space
32
/space/space/space/space/space/space/space/space
33
/space/space/space/space/space/space/space/space
34
/space/space/space/space/space/space/space/space
35
/space/space/space/space/space/space/space/space
36
/space/exclamdown/cent/sterling/currency/yen/brokenbar/section
37
/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
38
/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
39
/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
40
/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
41
/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
42
/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
43
/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
44
/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
45
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
46
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
47
/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
48
] def
49
 
50
50 dict begin
51
% This is a standard prolog for Postscript generated by Tk's canvas
52
% widget.
53
% RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $
54
 
55
% The definitions below just define all of the variables used in
56
% any of the procedures here.  This is needed for obscure reasons
57
% explained on p. 716 of the Postscript manual (Section H.2.7,
58
% "Initializing Variables," in the section on Encapsulated Postscript).
59
 
60
/baseline 0 def
61
/stipimage 0 def
62
/height 0 def
63
/justify 0 def
64
/lineLength 0 def
65
/spacing 0 def
66
/stipple 0 def
67
/strings 0 def
68
/xoffset 0 def
69
/yoffset 0 def
70
/tmpstip null def
71
 
72
 
73
/cstringshow {
74
    {
75
        dup type /stringtype eq
76
        { show } { glyphshow }
77
        ifelse
78
    }
79
    forall
80
} bind def
81
 
82
 
83
 
84
/cstringwidth {
85
 
86
    {
87
        dup type /stringtype eq
88
        { stringwidth } {
89
            currentfont /Encoding get exch 1 exch put (\001) stringwidth
90
        }
91
        ifelse
92
        exch 3 1 roll add 3 1 roll add exch
93
    }
94
    forall
95
} bind def
96
 
97
% font ISOEncode font
98
% This procedure changes the encoding of a font from the default
99
% Postscript encoding to current system encoding.  It's typically invoked just
100
% before invoking "setfont".  The body of this procedure comes from
101
% Section 5.6.1 of the Postscript book.
102
 
103
/ISOEncode {
104
    dup length dict begin
105
        {1 index /FID ne {def} {pop pop} ifelse} forall
106
        /Encoding CurrentEncoding def
107
        currentdict
108
    end
109
 
110
    % I'm not sure why it's necessary to use "definefont" on this new
111
    % font, but it seems to be important; just use the name "Temporary"
112
    % for the font.
113
 
114
    /Temporary exch definefont
115
} bind def
116
 
117
% StrokeClip
118
%
119
% This procedure converts the current path into a clip area under
120
% the assumption of stroking.  It's a bit tricky because some Postscript
121
% interpreters get errors during strokepath for dashed lines.  If
122
% this happens then turn off dashes and try again.
123
 
124
/StrokeClip {
125
    {strokepath} stopped {
126
        (This Postscript printer gets limitcheck overflows when) =
127
        (stippling dashed lines;  lines will be printed solid instead.) =
128
        [] 0 setdash strokepath} if
129
    clip
130
} bind def
131
 
132
% desiredSize EvenPixels closestSize
133
%
134
% The procedure below is used for stippling.  Given the optimal size
135
% of a dot in a stipple pattern in the current user coordinate system,
136
% compute the closest size that is an exact multiple of the device's
137
% pixel size.  This allows stipple patterns to be displayed without
138
% aliasing effects.
139
 
140
/EvenPixels {
141
    % Compute exact number of device pixels per stipple dot.
142
    dup 0 matrix currentmatrix dtransform
143
    dup mul exch dup mul add sqrt
144
 
145
    % Round to an integer, make sure the number is at least 1, and compute
146
    % user coord distance corresponding to this.
147
    dup round dup 1 lt {pop 1} if
148
    exch div mul
149
} bind def
150
 
151
% width height string StippleFill --
152
%
153
% Given a path already set up and a clipping region generated from
154
% it, this procedure will fill the clipping region with a stipple
155
% pattern.  "String" contains a proper image description of the
156
% stipple pattern and "width" and "height" give its dimensions.  Each
157
% stipple dot is assumed to be about one unit across in the current
158
% user coordinate system.  This procedure trashes the graphics state.
159
 
160
/StippleFill {
161
    % The following code is needed to work around a NeWSprint bug.
162
 
163
    /tmpstip 1 index def
164
 
165
    % Change the scaling so that one user unit in user coordinates
166
    % corresponds to the size of one stipple dot.
167
    1 EvenPixels dup scale
168
 
169
    % Compute the bounding box occupied by the path (which is now
170
    % the clipping region), and round the lower coordinates down
171
    % to the nearest starting point for the stipple pattern.  Be
172
    % careful about negative numbers, since the rounding works
173
    % differently on them.
174
 
175
    pathbbox
176
    4 2 roll
177
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
178
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
179
 
180
    % Stack now: width height string y1 y2 x1 x2
181
    % Below is a doubly-nested for loop to iterate across this area
182
    % in units of the stipple pattern size, going up columns then
183
    % across rows, blasting out a stipple-pattern-sized rectangle at
184
    % each position
185
 
186
    6 index exch {
187
        2 index 5 index 3 index {
188
            % Stack now: width height string y1 y2 x y
189
 
190
            gsave
191
            1 index exch translate
192
            5 index 5 index true matrix tmpstip imagemask
193
            grestore
194
        } for
195
        pop
196
    } for
197
    pop pop pop pop pop
198
} bind def
199
 
200
% -- AdjustColor --
201
% Given a color value already set for output by the caller, adjusts
202
% that value to a grayscale or mono value if requested by the CL
203
% variable.
204
 
205
/AdjustColor {
206
    CL 2 lt {
207
        currentgray
208
        CL 0 eq {
209
            .5 lt {0} {1} ifelse
210
        } if
211
        setgray
212
    } if
213
} bind def
214
 
215
% x y strings spacing xoffset yoffset justify stipple DrawText --
216
% This procedure does all of the real work of drawing text.  The
217
% color and font must already have been set by the caller, and the
218
% following arguments must be on the stack:
219
%
220
% x, y -        Coordinates at which to draw text.
221
% strings -     An array of strings, one for each line of the text item,
222
%               in order from top to bottom.
223
% spacing -     Spacing between lines.
224
% xoffset -     Horizontal offset for text bbox relative to x and y: 0 for
225
%               nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se.
226
% yoffset -     Vertical offset for text bbox relative to x and y: 0 for
227
%               nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se.
228
% justify -     0 for left justification, 0.5 for center, 1 for right justify.
229
% stipple -     Boolean value indicating whether or not text is to be
230
%               drawn in stippled fashion.  If text is stippled,
231
%               procedure StippleText must have been defined to call
232
%               StippleFill in the right way.
233
%
234
% Also, when this procedure is invoked, the color and font must already
235
% have been set for the text.
236
 
237
/DrawText {
238
    /stipple exch def
239
    /justify exch def
240
    /yoffset exch def
241
    /xoffset exch def
242
    /spacing exch def
243
    /strings exch def
244
 
245
    % First scan through all of the text to find the widest line.
246
 
247
    /lineLength 0 def
248
    strings {
249
        cstringwidth pop
250
        dup lineLength gt {/lineLength exch def} {pop} ifelse
251
        newpath
252
    } forall
253
 
254
    % Compute the baseline offset and the actual font height.
255
 
256
 
257
    pathbbox dup /baseline exch def
258
    exch pop exch sub /height exch def pop
259
    newpath
260
 
261
    % Translate coordinates first so that the origin is at the upper-left
262
    % corner of the text's bounding box. Remember that x and y for
263
    % positioning are still on the stack.
264
 
265
    translate
266
    lineLength xoffset mul
267
    strings length 1 sub spacing mul height add yoffset mul translate
268
 
269
    % Now use the baseline and justification information to translate so
270
    % that the origin is at the baseline and positioning point for the
271
    % first line of text.
272
 
273
    justify lineLength mul baseline neg translate
274
 
275
    % Iterate over each of the lines to output it.  For each line,
276
    % compute its width again so it can be properly justified, then
277
    % display it.
278
 
279
    strings {
280
        dup cstringwidth pop
281
        justify neg mul 0 moveto
282
        stipple {
283
 
284
 
285
            % The text is stippled, so turn it into a path and print
286
            % by calling StippledText, which in turn calls StippleFill.
287
            % Unfortunately, many Postscript interpreters will get
288
            % overflow errors if we try to do the whole string at
289
            % once, so do it a character at a time.
290
 
291
            gsave
292
            /char (X) def
293
            {
294
                dup type /stringtype eq {
295
                    % This segment is a string.
296
                    {
297
                        char 0 3 -1 roll put
298
                        currentpoint
299
                        gsave
300
                        char true charpath clip StippleText
301
                        grestore
302
                        char stringwidth translate
303
                        moveto
304
                    } forall
305
                } {
306
                    % This segment is glyph name
307
                    % Temporary override
308
                    currentfont /Encoding get exch 1 exch put
309
                    currentpoint
310
                    gsave (\001) true charpath clip StippleText
311
                    grestore
312
                    (\001) stringwidth translate
313
                    moveto
314
                } ifelse
315
            } forall
316
            grestore
317
        } {cstringshow} ifelse
318
 
319
    } forall
320
} bind def
321
 
322
%%EndProlog
323
%%BeginSetup
324
/CL 2 def
325
%%IncludeResource: font Helvetica
326
%%IncludeResource: font Helvetica-Bold
327
%%EndSetup
328
 
329
%%Page: 1 1
330
save
331
0.0 0.0 translate
332
0.6162 0.6162 scale
333
277 0 translate
334
-277 1365 moveto 687 1365 lineto 687 0 lineto -277 0 lineto closepath clip newpath
335
gsave
336
 
337
1.000 1.000 1.000 setrgbcolor AdjustColor
338
fill
339
 
340
 
341
1 setlinewidth
342
[] 0 setdash
343
1.000 1.000 1.000 setrgbcolor AdjustColor
344
stroke
345
grestore
346
gsave
347
165 1218 moveto 92 0 rlineto 0 -26 rlineto -92 0 rlineto closepath
348
1.000 1.000 1.000 setrgbcolor AdjustColor
349
fill
350
165 1218 moveto 92 0 rlineto 0 -26 rlineto -92 0 rlineto closepath
351
 
352
1 setlinewidth
353
[] 0 setdash
354
0.000 0.000 0.000 setrgbcolor AdjustColor
355
stroke
356
grestore
357
gsave
358
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
359
0.000 0.000 0.000 setrgbcolor AdjustColor
360
211 1205 [
361
[(MPEG2 Input)]
362
] 15 -0.5 0.5 0 false DrawText
363
grestore
364
gsave
365
grestore
366
gsave
367
166 1132 moveto 90 0 rlineto 0 -26 rlineto -90 0 rlineto closepath
368
1.000 1.000 1.000 setrgbcolor AdjustColor
369
fill
370
166 1132 moveto 90 0 rlineto 0 -26 rlineto -90 0 rlineto closepath
371
 
372
1 setlinewidth
373
[] 0 setdash
374
0.000 0.000 0.000 setrgbcolor AdjustColor
375
stroke
376
grestore
377
gsave
378
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
379
0.000 0.000 0.000 setrgbcolor AdjustColor
380
211 1119 [
381
[(Video Buffer)]
382
] 15 -0.5 0.5 0 false DrawText
383
grestore
384
gsave
385
grestore
386
gsave
387
182 1046 moveto 58 0 rlineto 0 -26 rlineto -58 0 rlineto closepath
388
1.000 1.000 1.000 setrgbcolor AdjustColor
389
fill
390
182 1046 moveto 58 0 rlineto 0 -26 rlineto -58 0 rlineto closepath
391
 
392
1 setlinewidth
393
[] 0 setdash
394
0.000 0.000 0.000 setrgbcolor AdjustColor
395
stroke
396
grestore
397
gsave
398
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
399
0.000 0.000 0.000 setrgbcolor AdjustColor
400
211 1033 [
401
[(Getbits)]
402
] 15 -0.5 0.5 0 false DrawText
403
grestore
404
gsave
405
grestore
406
gsave
407
156 960 moveto 110 0 rlineto 0 -40 rlineto -110 0 rlineto closepath
408
1.000 1.000 1.000 setrgbcolor AdjustColor
409
fill
410
156 960 moveto 110 0 rlineto 0 -40 rlineto -110 0 rlineto closepath
411
 
412
1 setlinewidth
413
[] 0 setdash
414
0.000 0.000 0.000 setrgbcolor AdjustColor
415
stroke
416
grestore
417
gsave
418
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
419
0.000 0.000 0.000 setrgbcolor AdjustColor
420
211 940 [
421
[(Variable Length)]
422
[(Decoding)]
423
] 15 -0.5 0.5 0 false DrawText
424
grestore
425
gsave
426
grestore
427
gsave
428
201 860 moveto 142 0 rlineto 0 -56 rlineto -142 0 rlineto closepath
429
1.000 1.000 1.000 setrgbcolor AdjustColor
430
fill
431
201 860 moveto 142 0 rlineto 0 -56 rlineto -142 0 rlineto closepath
432
 
433
1 setlinewidth
434
[] 0 setdash
435
0.000 0.000 0.000 setrgbcolor AdjustColor
436
stroke
437
grestore
438
gsave
439
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
440
0.000 0.000 0.000 setrgbcolor AdjustColor
441
272 832 [
442
[(Run/Level Decoding,)]
443
[(Inverse Quantizing,)]
444
[(Inverse ZigZag)]
445
] 15 -0.5 0.5 0 false DrawText
446
grestore
447
gsave
448
grestore
449
gsave
450
210 744 moveto 124 0 rlineto 0 -40 rlineto -124 0 rlineto closepath
451
1.000 1.000 1.000 setrgbcolor AdjustColor
452
fill
453
210 744 moveto 124 0 rlineto 0 -40 rlineto -124 0 rlineto closepath
454
 
455
1 setlinewidth
456
[] 0 setdash
457
0.000 0.000 0.000 setrgbcolor AdjustColor
458
stroke
459
grestore
460
gsave
461
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
462
0.000 0.000 0.000 setrgbcolor AdjustColor
463
272 724 [
464
[(Inverse Discrete)]
465
[(Cosine Transform)]
466
] 15 -0.5 0.5 0 false DrawText
467
grestore
468
gsave
469
grestore
470
gsave
471
159 644 moveto 104 0 rlineto 0 -40 rlineto -104 0 rlineto closepath
472
1.000 1.000 1.000 setrgbcolor AdjustColor
473
fill
474
159 644 moveto 104 0 rlineto 0 -40 rlineto -104 0 rlineto closepath
475
 
476
1 setlinewidth
477
[] 0 setdash
478
0.000 0.000 0.000 setrgbcolor AdjustColor
479
stroke
480
grestore
481
gsave
482
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
483
0.000 0.000 0.000 setrgbcolor AdjustColor
484
211 624 [
485
[(Motion)]
486
[(Compensation)]
487
] 15 -0.5 0.5 0 false DrawText
488
grestore
489
gsave
490
grestore
491
gsave
492
169 544 moveto 86 0 rlineto 0 -26 rlineto -86 0 rlineto closepath
493
1.000 1.000 1.000 setrgbcolor AdjustColor
494
fill
495
169 544 moveto 86 0 rlineto 0 -26 rlineto -86 0 rlineto closepath
496
 
497
1 setlinewidth
498
[] 0 setdash
499
0.000 0.000 0.000 setrgbcolor AdjustColor
500
stroke
501
grestore
502
gsave
503
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
504
0.000 0.000 0.000 setrgbcolor AdjustColor
505
212 531 [
506
[(Frame Store)]
507
] 15 -0.5 0.5 0 false DrawText
508
grestore
509
gsave
510
grestore
511
gsave
512
28 544 moveto 74 0 rlineto 0 -26 rlineto -74 0 rlineto closepath
513
1.000 1.000 1.000 setrgbcolor AdjustColor
514
fill
515
28 544 moveto 74 0 rlineto 0 -26 rlineto -74 0 rlineto closepath
516
 
517
1 setlinewidth
518
[] 0 setdash
519
0.000 0.000 0.000 setrgbcolor AdjustColor
520
stroke
521
grestore
522
gsave
523
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
524
0.000 0.000 0.000 setrgbcolor AdjustColor
525
65 531 [
526
[(Dot Clock)]
527
] 15 -0.5 0.5 0 false DrawText
528
grestore
529
gsave
530
grestore
531
gsave
532
20 458 moveto 88 0 rlineto 0 -39.9999999999999 rlineto -88 0 rlineto closepath
533
1.000 1.000 1.000 setrgbcolor AdjustColor
534
fill
535
20 458 moveto 88 0 rlineto 0 -39.9999999999999 rlineto -88 0 rlineto closepath
536
 
537
1 setlinewidth
538
[] 0 setdash
539
0.000 0.000 0.000 setrgbcolor AdjustColor
540
stroke
541
grestore
542
gsave
543
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
544
0.000 0.000 0.000 setrgbcolor AdjustColor
545
64 438 [
546
[(Video Sync)]
547
[( and Timing)]
548
] 15 -0.5 0.5 0 false DrawText
549
grestore
550
gsave
551
grestore
552
gsave
553
314 458 moveto 76 0 rlineto 0 -39.9999999999999 rlineto -76 0 rlineto closepath
554
1.000 1.000 1.000 setrgbcolor AdjustColor
555
fill
556
314 458 moveto 76 0 rlineto 0 -39.9999999999999 rlineto -76 0 rlineto closepath
557
 
558
1 setlinewidth
559
[] 0 setdash
560
0.000 0.000 0.000 setrgbcolor AdjustColor
561
stroke
562
grestore
563
gsave
564
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
565
0.000 0.000 0.000 setrgbcolor AdjustColor
566
352 438 [
567
[(Memory)]
568
[(Controller)]
569
] 15 -0.5 0.5 0 false DrawText
570
grestore
571
gsave
572
grestore
573
gsave
574
168 458 moveto 86 0 rlineto 0 -39.9999999999999 rlineto -86 0 rlineto closepath
575
1.000 1.000 1.000 setrgbcolor AdjustColor
576
fill
577
168 458 moveto 86 0 rlineto 0 -39.9999999999999 rlineto -86 0 rlineto closepath
578
 
579
1 setlinewidth
580
[] 0 setdash
581
0.000 0.000 0.000 setrgbcolor AdjustColor
582
stroke
583
grestore
584
gsave
585
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
586
0.000 0.000 0.000 setrgbcolor AdjustColor
587
211 438 [
588
[(Chroma)]
589
[(Resampling)]
590
] 15 -0.5 0.5 0 false DrawText
591
grestore
592
gsave
593
grestore
594
gsave
595
332 358 moveto 40.0000000000001 0 rlineto 0 -26 rlineto -40.0000000000001 0 rlineto closepath
596
1.000 1.000 1.000 setrgbcolor AdjustColor
597
fill
598
332 358 moveto 40.0000000000001 0 rlineto 0 -26 rlineto -40.0000000000001 0 rlineto closepath
599
 
600
1 setlinewidth
601
[] 0 setdash
602
0.000 0.000 0.000 setrgbcolor AdjustColor
603
stroke
604
grestore
605
gsave
606
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
607
0.000 0.000 0.000 setrgbcolor AdjustColor
608
352 345 [
609
[(RAM)]
610
] 15 -0.5 0.5 0 false DrawText
611
grestore
612
gsave
613
grestore
614
gsave
615
190 358 moveto 46 0 rlineto 0 -26 rlineto -46 0 rlineto closepath
616
1.000 1.000 1.000 setrgbcolor AdjustColor
617
fill
618
190 358 moveto 46 0 rlineto 0 -26 rlineto -46 0 rlineto closepath
619
 
620
1 setlinewidth
621
[] 0 setdash
622
0.000 0.000 0.000 setrgbcolor AdjustColor
623
stroke
624
grestore
625
gsave
626
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
627
0.000 0.000 0.000 setrgbcolor AdjustColor
628
213 345 [
629
[(Mixer)]
630
] 15 -0.5 0.5 0 false DrawText
631
grestore
632
gsave
633
grestore
634
gsave
635
173 272 moveto 78 0 rlineto 0 -40 rlineto -78 0 rlineto closepath
636
1.000 1.000 1.000 setrgbcolor AdjustColor
637
fill
638
173 272 moveto 78 0 rlineto 0 -40 rlineto -78 0 rlineto closepath
639
 
640
1 setlinewidth
641
[] 0 setdash
642
0.000 0.000 0.000 setrgbcolor AdjustColor
643
stroke
644
grestore
645
gsave
646
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
647
0.000 0.000 0.000 setrgbcolor AdjustColor
648
212 252 [
649
[(On-Screen)]
650
[(Display)]
651
] 15 -0.5 0.5 0 false DrawText
652
grestore
653
gsave
654
grestore
655
gsave
656
172 172 moveto 84 0 rlineto 0 -26 rlineto -84 0 rlineto closepath
657
1.000 1.000 1.000 setrgbcolor AdjustColor
658
fill
659
172 172 moveto 84 0 rlineto 0 -26 rlineto -84 0 rlineto closepath
660
 
661
1 setlinewidth
662
[] 0 setdash
663
0.000 0.000 0.000 setrgbcolor AdjustColor
664
stroke
665
grestore
666
gsave
667
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
668
0.000 0.000 0.000 setrgbcolor AdjustColor
669
214 159 [
670
[(YUV to RGB)]
671
] 15 -0.5 0.5 0 false DrawText
672
grestore
673
gsave
674
grestore
675
gsave
676
152 86 moveto 120 0 rlineto 0 -26 rlineto -120 0 rlineto closepath
677
1.000 1.000 1.000 setrgbcolor AdjustColor
678
fill
679
152 86 moveto 120 0 rlineto 0 -26 rlineto -120 0 rlineto closepath
680
 
681
1 setlinewidth
682
[] 0 setdash
683
0.000 0.000 0.000 setrgbcolor AdjustColor
684
stroke
685
grestore
686
gsave
687
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
688
0.000 0.000 0.000 setrgbcolor AdjustColor
689
212 73 [
690
[(Digital Video Out)]
691
] 15 -0.5 0.5 0 false DrawText
692
grestore
693
gsave
694
grestore
695
gsave
696
178 1177 moveto 66 0 rlineto 0 -30 rlineto -66 0 rlineto closepath
697
1.000 1.000 1.000 setrgbcolor AdjustColor
698
fill
699
grestore
700
gsave
701
/Helvetica findfont 12 scalefont ISOEncode setfont
702
0.000 0.000 0.000 setrgbcolor AdjustColor
703
211 1162 [
704
[(Elementary)]
705
[(Stream)]
706
] 15 -0.5 0.5 0 false DrawText
707
grestore
708
gsave
709
211 1192 moveto
710
211 1162 lineto
711
211 1138.54590083621 lineto
712
 
713
1 setlinejoin
714
1 setlinewidth
715
[] 0 setdash
716
0.000 0.000 0.000 setrgbcolor AdjustColor
717
stroke
718
211 1132 moveto
719
216.501 1144.001 lineto
720
211.5 1144.001 lineto
721
210.5 1144.001 lineto
722
205.499 1144.001 lineto
723
211 1132 lineto
724
fill
725
grestore
726
gsave
727
178 1091 moveto 66 0 rlineto 0 -30 rlineto -66 0 rlineto closepath
728
1.000 1.000 1.000 setrgbcolor AdjustColor
729
fill
730
grestore
731
gsave
732
/Helvetica findfont 12 scalefont ISOEncode setfont
733
0.000 0.000 0.000 setrgbcolor AdjustColor
734
211 1076 [
735
[(Elementary)]
736
[(Stream)]
737
] 15 -0.5 0.5 0 false DrawText
738
grestore
739
gsave
740
211 1106 moveto
741
211 1076 lineto
742
211 1052.54590083621 lineto
743
 
744
1 setlinejoin
745
1 setlinewidth
746
[] 0 setdash
747
0.000 0.000 0.000 setrgbcolor AdjustColor
748
stroke
749
211 1046 moveto
750
216.501 1058.001 lineto
751
211.5 1058.001 lineto
752
210.5 1058.001 lineto
753
205.499 1058.001 lineto
754
211 1046 lineto
755
fill
756
grestore
757
gsave
758
187 997 moveto 48 0 rlineto 0 -15 rlineto -48 0 rlineto closepath
759
1.000 1.000 1.000 setrgbcolor AdjustColor
760
fill
761
grestore
762
gsave
763
/Helvetica findfont 12 scalefont ISOEncode setfont
764
0.000 0.000 0.000 setrgbcolor AdjustColor
765
211 990 [
766
[(bitfields)]
767
] 15 -0.5 0.5 0 false DrawText
768
grestore
769
gsave
770
211 1020 moveto
771
211 990 lineto
772
211 966.545900836212 lineto
773
 
774
1 setlinejoin
775
1 setlinewidth
776
[] 0 setdash
777
0.000 0.000 0.000 setrgbcolor AdjustColor
778
stroke
779
211 960 moveto
780
216.501 972.001 lineto
781
211.5 972.001 lineto
782
210.5 972.001 lineto
783
205.499 972.001 lineto
784
211 960 lineto
785
fill
786
grestore
787
gsave
788
210 905 moveto 59 0 rlineto 0 -30 rlineto -59 0 rlineto closepath
789
1.000 1.000 1.000 setrgbcolor AdjustColor
790
fill
791
grestore
792
gsave
793
/Helvetica findfont 12 scalefont ISOEncode setfont
794
0.000 0.000 0.000 setrgbcolor AdjustColor
795
239 890 [
796
[(Run/Level)]
797
[(Values)]
798
] 15 -0.5 0.5 0 false DrawText
799
grestore
800
gsave
801
222 920 moveto
802
239 890 lineto
803
252.772788592808 865.695078953869 lineto
804
 
805
1 setlinejoin
806
1 setlinewidth
807
[] 0 setdash
808
0.000 0.000 0.000 setrgbcolor AdjustColor
809
stroke
810
256 860 moveto
811
254.869348168011 873.153198410836 lineto
812
250.518367216582 870.68764253836 lineto
813
249.648345030733 870.194629966379 lineto
814
245.297364079304 867.729074093902 lineto
815
256 860 lineto
816
fill
817
grestore
818
gsave
819
152 891 moveto 45 0 rlineto 0 -30 rlineto -45 0 rlineto closepath
820
1.000 1.000 1.000 setrgbcolor AdjustColor
821
fill
822
grestore
823
gsave
824
/Helvetica findfont 12 scalefont ISOEncode setfont
825
0.000 0.000 0.000 setrgbcolor AdjustColor
826
174 876 [
827
[(Motion)]
828
[(Vectors)]
829
] 15 -0.5 0.5 0 false DrawText
830
grestore
831
gsave
832
199 920 moveto
833
174 876 lineto
834
150 832 lineto
835
150 778 lineto
836
150 724 lineto
837
174 684 lineto
838
194.63216180432 649.613063659467 lineto
839
 
840
1 setlinejoin
841
1 setlinewidth
842
[] 0 setdash
843
0.000 0.000 0.000 setrgbcolor AdjustColor
844
stroke
845
198 644 moveto
846
196.542605023459 657.121013752083 lineto
847
192.254282901971 654.54802047919 lineto
848
191.396789976258 654.033524723763 lineto
849
187.10846785477 651.46053145087 lineto
850
198 644 lineto
851
fill
852
grestore
853
gsave
854
grestore
855
gsave
856
grestore
857
gsave
858
238 789 moveto 67.9999999999999 0 rlineto 0 -30 rlineto -67.9999999999999 0 rlineto closepath
859
1.000 1.000 1.000 setrgbcolor AdjustColor
860
fill
861
grestore
862
gsave
863
/Helvetica findfont 12 scalefont ISOEncode setfont
864
0.000 0.000 0.000 setrgbcolor AdjustColor
865
272 774 [
866
[(DCT)]
867
[(Coefficients)]
868
] 15 -0.5 0.5 0 false DrawText
869
grestore
870
gsave
871
272 804 moveto
872
272 774 lineto
873
272 750.545900836212 lineto
874
 
875
1 setlinejoin
876
1 setlinewidth
877
[] 0 setdash
878
0.000 0.000 0.000 setrgbcolor AdjustColor
879
stroke
880
272 744 moveto
881
277.501 756.001 lineto
882
272.5 756.001 lineto
883
271.5 756.001 lineto
884
266.499 756.001 lineto
885
272 744 lineto
886
fill
887
grestore
888
gsave
889
222 681 moveto 38.9999999999999 0 rlineto 0 -15 rlineto -38.9999999999999 0 rlineto closepath
890
1.000 1.000 1.000 setrgbcolor AdjustColor
891
fill
892
grestore
893
gsave
894
/Helvetica findfont 12 scalefont ISOEncode setfont
895
0.000 0.000 0.000 setrgbcolor AdjustColor
896
241 674 [
897
[(blocks)]
898
] 15 -0.5 0.5 0 false DrawText
899
grestore
900
gsave
901
259 704 moveto
902
241 674 lineto
903
226.36783819568 649.613063659467 lineto
904
 
905
1 setlinejoin
906
1 setlinewidth
907
[] 0 setdash
908
0.000 0.000 0.000 setrgbcolor AdjustColor
909
stroke
910
223 644 moveto
911
233.89153214523 651.460531450869 lineto
912
229.603210023742 654.033524723762 lineto
913
228.745717098029 654.54802047919 lineto
914
224.457394976541 657.121013752083 lineto
915
223 644 lineto
916
fill
917
grestore
918
gsave
919
174 581 moveto 75 0 rlineto 0 -15 rlineto -75 0 rlineto closepath
920
1.000 1.000 1.000 setrgbcolor AdjustColor
921
fill
922
grestore
923
gsave
924
/Helvetica findfont 12 scalefont ISOEncode setfont
925
0.000 0.000 0.000 setrgbcolor AdjustColor
926
211 574 [
927
[(macroblocks)]
928
] 15 -0.5 0.5 0 false DrawText
929
grestore
930
gsave
931
211 604 moveto
932
211 574 lineto
933
211 550.545900836212 lineto
934
 
935
1 setlinejoin
936
1 setlinewidth
937
[] 0 setdash
938
0.000 0.000 0.000 setrgbcolor AdjustColor
939
stroke
940
211 544 moveto
941
216.501 556.001 lineto
942
211.5 556.001 lineto
943
210.5 556.001 lineto
944
205.499 556.001 lineto
945
211 544 lineto
946
fill
947
grestore
948
gsave
949
64 518 moveto
950
64 488 lineto
951
64 464.545900836212 lineto
952
 
953
1 setlinejoin
954
1 setlinewidth
955
[] 0 setdash
956
0.000 0.000 0.000 setrgbcolor AdjustColor
957
stroke
958
64 458 moveto
959
69.501 470.001 lineto
960
64.5 470.001 lineto
961
63.5 470.001 lineto
962
58.499 470.001 lineto
963
64 458 lineto
964
fill
965
grestore
966
gsave
967
231 518 moveto
968
276 488 lineto
969
315.553481282524 461.631012478317 lineto
970
 
971
1 setlinejoin
972
1 setlinewidth
973
[] 0 setdash
974
0.000 0.000 0.000 setrgbcolor AdjustColor
975
stroke
976
321 458 moveto
977
314.065970197086 469.234065724051 lineto
978
311.291914515764 465.072982202068 lineto
979
310.737214319539 464.24093190773 lineto
980
307.963158638216 460.079848385746 lineto
981
321 458 lineto
982
fill
983
grestore
984
gsave
985
189 495 moveto 44 0 rlineto 0 -15 rlineto -44 0 rlineto closepath
986
1.000 1.000 1.000 setrgbcolor AdjustColor
987
fill
988
grestore
989
gsave
990
/Helvetica findfont 12 scalefont ISOEncode setfont
991
0.000 0.000 0.000 setrgbcolor AdjustColor
992
211 488 [
993
[(Frames)]
994
] 15 -0.5 0.5 0 false DrawText
995
grestore
996
gsave
997
211 518 moveto
998
211 488 lineto
999
211 464.545900836212 lineto
1000
 
1001
1 setlinejoin
1002
1 setlinewidth
1003
[] 0 setdash
1004
0.000 0.000 0.000 setrgbcolor AdjustColor
1005
stroke
1006
211 458 moveto
1007
216.501 470.001 lineto
1008
211.5 470.001 lineto
1009
210.5 470.001 lineto
1010
205.499 470.001 lineto
1011
211 458 lineto
1012
fill
1013
grestore
1014
gsave
1015
131 395 moveto 27 0 rlineto 0 -15 rlineto -27 0 rlineto closepath
1016
1.000 1.000 1.000 setrgbcolor AdjustColor
1017
fill
1018
grestore
1019
gsave
1020
/Helvetica findfont 12 scalefont ISOEncode setfont
1021
0.000 0.000 0.000 setrgbcolor AdjustColor
1022
144 388 [
1023
[(Sync)]
1024
] 15 -0.5 0.5 0 false DrawText
1025
grestore
1026
gsave
1027
96 418 moveto
1028
144 388 lineto
1029
186.449087192707 361.469320504558 lineto
1030
 
1031
1 setlinejoin
1032
1 setlinewidth
1033
[] 0 setdash
1034
0.000 0.000 0.000 setrgbcolor AdjustColor
1035
stroke
1036
192 358 moveto
1037
184.738696522592 369.02535594931 lineto
1038
182.088171823637 364.784516430981 lineto
1039
181.558172883633 363.936518126976 lineto
1040
178.907648184677 359.695678608646 lineto
1041
192 358 lineto
1042
fill
1043
grestore
1044
gsave
1045
352 418 moveto
1046
352 388 lineto
1047
352 364.545900836212 lineto
1048
 
1049
1 setlinejoin
1050
1 setlinewidth
1051
[] 0 setdash
1052
0.000 0.000 0.000 setrgbcolor AdjustColor
1053
stroke
1054
352 358 moveto
1055
357.501 370.001 lineto
1056
352.5 370.001 lineto
1057
351.5 370.001 lineto
1058
346.499 370.001 lineto
1059
352 358 lineto
1060
fill
1061
grestore
1062
gsave
1063
183 395 moveto 57 0 rlineto 0 -15 rlineto -57 0 rlineto closepath
1064
1.000 1.000 1.000 setrgbcolor AdjustColor
1065
fill
1066
grestore
1067
gsave
1068
/Helvetica findfont 12 scalefont ISOEncode setfont
1069
0.000 0.000 0.000 setrgbcolor AdjustColor
1070
211 388 [
1071
[(YUV, OSD)]
1072
] 15 -0.5 0.5 0 false DrawText
1073
grestore
1074
gsave
1075
211 418 moveto
1076
211 388 lineto
1077
211.781924424922 364.542267252342 lineto
1078
 
1079
1 setlinejoin
1080
1 setlinewidth
1081
[] 0 setdash
1082
0.000 0.000 0.000 setrgbcolor AdjustColor
1083
stroke
1084
212 358 moveto
1085
217.09813515567 370.177603209767 lineto
1086
212.099911175868 370.010995743773 lineto
1087
211.100466268889 369.977680913541 lineto
1088
206.102242289086 369.811073447547 lineto
1089
212 358 lineto
1090
fill
1091
grestore
1092
gsave
1093
167 309 moveto 90 0 rlineto 0 -15 rlineto -90 0 rlineto closepath
1094
1.000 1.000 1.000 setrgbcolor AdjustColor
1095
fill
1096
grestore
1097
gsave
1098
/Helvetica findfont 12 scalefont ISOEncode setfont
1099
0.000 0.000 0.000 setrgbcolor AdjustColor
1100
212 302 [
1101
[(YUV, OSD, Sync)]
1102
] 15 -0.5 0.5 0 false DrawText
1103
grestore
1104
gsave
1105
212 332 moveto
1106
212 302 lineto
1107
212 278.545900836212 lineto
1108
 
1109
1 setlinejoin
1110
1 setlinewidth
1111
[] 0 setdash
1112
0.000 0.000 0.000 setrgbcolor AdjustColor
1113
stroke
1114
212 272 moveto
1115
217.501 284.001 lineto
1116
212.5 284.001 lineto
1117
211.5 284.001 lineto
1118
206.499 284.001 lineto
1119
212 272 lineto
1120
fill
1121
grestore
1122
gsave
1123
183 209 moveto 58 0 rlineto 0 -15 rlineto -58 0 rlineto closepath
1124
1.000 1.000 1.000 setrgbcolor AdjustColor
1125
fill
1126
grestore
1127
gsave
1128
/Helvetica findfont 12 scalefont ISOEncode setfont
1129
0.000 0.000 0.000 setrgbcolor AdjustColor
1130
212 202 [
1131
[(YUV, Sync)]
1132
] 15 -0.5 0.5 0 false DrawText
1133
grestore
1134
gsave
1135
212 232 moveto
1136
212 202 lineto
1137
212.781924424922 178.542267252342 lineto
1138
 
1139
1 setlinejoin
1140
1 setlinewidth
1141
[] 0 setdash
1142
0.000 0.000 0.000 setrgbcolor AdjustColor
1143
stroke
1144
213 172 moveto
1145
218.09813515567 184.177603209767 lineto
1146
213.099911175868 184.010995743773 lineto
1147
212.100466268888 183.977680913541 lineto
1148
207.102242289086 183.811073447547 lineto
1149
213 172 lineto
1150
fill
1151
grestore
1152
gsave
1153
167 123 moveto 90 0 rlineto 0 -15 rlineto -90 0 rlineto closepath
1154
1.000 1.000 1.000 setrgbcolor AdjustColor
1155
fill
1156
grestore
1157
gsave
1158
/Helvetica findfont 12 scalefont ISOEncode setfont
1159
0.000 0.000 0.000 setrgbcolor AdjustColor
1160
212 116 [
1161
[(RGB, YUV, Sync)]
1162
] 15 -0.5 0.5 0 false DrawText
1163
grestore
1164
gsave
1165
213 146 moveto
1166
212 116 lineto
1167
212 92.5459008362116 lineto
1168
 
1169
1 setlinejoin
1170
1 setlinewidth
1171
[] 0 setdash
1172
0.000 0.000 0.000 setrgbcolor AdjustColor
1173
stroke
1174
212 86 moveto
1175
217.501 98.001 lineto
1176
212.5 98.001 lineto
1177
211.5 98.001 lineto
1178
206.499 98.001 lineto
1179
212 86 lineto
1180
fill
1181
grestore
1182
restore showpage
1183
 
1184
%%Trailer
1185
end
1186
%%EOF
1187
 

powered by: WebSVN 2.1.0

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