forked from EarthScope/libmseed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packdata.c
712 lines (580 loc) · 21.5 KB
/
packdata.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
/***********************************************************************
* Routines for packing text/ASCII, INT_16, INT_32, FLOAT_32, FLOAT_64,
* STEIM1 and STEIM2 data records.
*
* modified: 2017.053
************************************************************************/
#include <memory.h>
#include <stdio.h>
#include <stdlib.h>
#include "libmseed.h"
#include "packdata.h"
/* Control for printing debugging information */
int encodedebug = 0;
/************************************************************************
* msr_encode_text:
*
* Encode text data and place in supplied buffer. Pad any space
* remaining in output buffer with zeros.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_text (char *input, int samplecount, char *output,
int outputlength)
{
int length;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
/* Determine minimum of input or output */
length = (samplecount < outputlength) ? samplecount : outputlength;
memcpy (output, input, length);
outputlength -= length;
if (outputlength > 0)
memset (output + length, 0, outputlength);
return length;
} /* End of msr_encode_text() */
/************************************************************************
* msr_encode_int16:
*
* Encode 16-bit integer data from an array of 32-bit integers and
* place in supplied buffer. Swap if requested. Pad any space
* remaining in output buffer with zeros.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_int16 (int32_t *input, int samplecount, int16_t *output,
int outputlength, int swapflag)
{
int idx;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
for (idx = 0; idx < samplecount && outputlength >= (int)sizeof (int16_t); idx++)
{
output[idx] = (int16_t)input[idx];
if (swapflag)
ms_gswap2a (&output[idx]);
outputlength -= sizeof (int16_t);
}
if (outputlength)
memset (&output[idx], 0, outputlength);
return idx;
} /* End of msr_encode_int16() */
/************************************************************************
* msr_encode_int32:
*
* Encode 32-bit integer data from an array of 32-bit integers and
* place in supplied buffer. Swap if requested. Pad any space
* remaining in output buffer with zeros.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_int32 (int32_t *input, int samplecount, int32_t *output,
int outputlength, int swapflag)
{
int idx;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
for (idx = 0; idx < samplecount && outputlength >= (int)sizeof (int32_t); idx++)
{
output[idx] = input[idx];
if (swapflag)
ms_gswap4a (&output[idx]);
outputlength -= sizeof (int32_t);
}
if (outputlength)
memset (&output[idx], 0, outputlength);
return idx;
} /* End of msr_encode_int32() */
/************************************************************************
* msr_encode_float32:
*
* Encode 32-bit float data from an array of 32-bit floats and place
* in supplied buffer. Swap if requested. Pad any space remaining in
* output buffer with zeros.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_float32 (float *input, int samplecount, float *output,
int outputlength, int swapflag)
{
int idx;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
for (idx = 0; idx < samplecount && outputlength >= (int)sizeof (float); idx++)
{
output[idx] = input[idx];
if (swapflag)
ms_gswap4a (&output[idx]);
outputlength -= sizeof (float);
}
if (outputlength)
memset (&output[idx], 0, outputlength);
return idx;
} /* End of msr_encode_float32() */
/************************************************************************
* msr_encode_float64:
*
* Encode 64-bit float data from an array of 64-bit doubles and place
* in supplied buffer. Swap if requested. Pad any space remaining in
* output buffer with zeros.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_float64 (double *input, int samplecount, double *output,
int outputlength, int swapflag)
{
int idx;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
for (idx = 0; idx < samplecount && outputlength >= (int)sizeof (double); idx++)
{
output[idx] = input[idx];
if (swapflag)
ms_gswap8a (&output[idx]);
outputlength -= sizeof (double);
}
if (outputlength)
memset (&output[idx], 0, outputlength);
return idx;
} /* End of msr_encode_float64() */
/* Macro to determine number of bits needed to represent VALUE in
* the following bit widths: 4,5,6,8,10,15,16,30,32 and set RESULT. */
#define BITWIDTH(VALUE, RESULT) \
if (VALUE >= -8 && VALUE <= 7) \
RESULT = 4; \
else if (VALUE >= -16 && VALUE <= 15) \
RESULT = 5; \
else if (VALUE >= -32 && VALUE <= 31) \
RESULT = 6; \
else if (VALUE >= -128 && VALUE <= 127) \
RESULT = 8; \
else if (VALUE >= -512 && VALUE <= 511) \
RESULT = 10; \
else if (VALUE >= -16384 && VALUE <= 16383) \
RESULT = 15; \
else if (VALUE >= -32768 && VALUE <= 32767) \
RESULT = 16; \
else if (VALUE >= -536870912 && VALUE <= 536870911) \
RESULT = 30; \
else \
RESULT = 32;
/************************************************************************
* msr_encode_steim1:
*
* Encode Steim1 data frames from an array of 32-bit integers and
* place in supplied buffer. Swap if requested. Pad any space
* remaining in output buffer with zeros.
*
* diff0 is the first difference in the sequence and relates the first
* sample to the sample previous to it (not available to this
* function). It should be set to 0 if this value is not known.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_steim1 (int32_t *input, int samplecount, int32_t *output,
int outputlength, int32_t diff0, int swapflag)
{
int32_t *frameptr; /* Frame pointer in output */
int32_t *Xnp = NULL; /* Reverse integration constant, aka last sample */
int32_t diffs[4];
int32_t bitwidth[4];
int diffcount = 0;
int inputidx = 0;
int outputsamples = 0;
int maxframes = outputlength / 64;
int packedsamples = 0;
int frameidx;
int startnibble;
int widx;
int idx;
union dword {
int8_t d8[4];
int16_t d16[2];
int32_t d32;
} * word;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
if (encodedebug)
ms_log (1, "Encoding Steim1 frames, samples: %d, max frames: %d, swapflag: %d\n",
samplecount, maxframes, swapflag);
/* Add first difference to buffers */
diffs[0] = diff0;
BITWIDTH (diffs[0], bitwidth[0]);
diffcount = 1;
for (frameidx = 0; frameidx < maxframes && outputsamples < samplecount; frameidx++)
{
frameptr = output + (16 * frameidx);
/* Set 64-byte frame to 0's */
memset (frameptr, 0, 64);
/* Save forward integration constant (X0), pointer to reverse integration constant (Xn)
* and set the starting nibble index depending on frame. */
if (frameidx == 0)
{
frameptr[1] = input[0];
if (encodedebug)
ms_log (1, "Frame %d: X0=%d\n", frameidx, frameptr[1]);
if (swapflag)
ms_gswap4a (&frameptr[1]);
Xnp = &frameptr[2];
startnibble = 3; /* First frame: skip nibbles, X0, and Xn */
}
else
{
startnibble = 1; /* Subsequent frames: skip nibbles */
if (encodedebug)
ms_log (1, "Frame %d\n", frameidx);
}
for (widx = startnibble; widx < 16 && outputsamples < samplecount; widx++)
{
if (diffcount < 4)
{
/* Shift diffs and related bit widths to beginning of buffers */
for (idx = 0; idx < diffcount; idx++)
{
diffs[idx] = diffs[packedsamples + idx];
bitwidth[idx] = bitwidth[packedsamples + idx];
}
/* Add new diffs and determine bit width needed to represent */
for (idx = diffcount; idx < 4 && inputidx < (samplecount - 1); idx++, inputidx++)
{
diffs[idx] = *(input + inputidx + 1) - *(input + inputidx);
BITWIDTH (diffs[idx], bitwidth[idx]);
diffcount++;
}
}
/* Determine optimal packing by checking, in-order:
* 4 x 8-bit differences
* 2 x 16-bit differences
* 1 x 32-bit difference */
word = (union dword *)&frameptr[widx];
packedsamples = 0;
/* 4 x 8-bit differences */
if (diffcount == 4 &&
bitwidth[0] <= 8 && bitwidth[1] <= 8 &&
bitwidth[2] <= 8 && bitwidth[3] <= 8)
{
if (encodedebug)
ms_log (1, " W%02d: 01=4x8b %d %d %d %d\n",
widx, diffs[0], diffs[1], diffs[2], diffs[3]);
word->d8[0] = diffs[0];
word->d8[1] = diffs[1];
word->d8[2] = diffs[2];
word->d8[3] = diffs[3];
/* 2-bit nibble is 0b01 (0x1) */
frameptr[0] |= 0x1ul << (30 - 2 * widx);
packedsamples = 4;
}
/* 2 x 16-bit differences */
else if (diffcount >= 2 &&
bitwidth[0] <= 16 && bitwidth[1] <= 16)
{
if (encodedebug)
ms_log (1, " W%02d: 2=2x16b %d %d\n", widx, diffs[0], diffs[1]);
word->d16[0] = diffs[0];
word->d16[1] = diffs[1];
if (swapflag)
{
ms_gswap2a (&word->d16[0]);
ms_gswap2a (&word->d16[1]);
}
/* 2-bit nibble is 0b10 (0x2) */
frameptr[0] |= 0x2ul << (30 - 2 * widx);
packedsamples = 2;
}
/* 1 x 32-bit difference */
else
{
if (encodedebug)
ms_log (1, " W%02d: 3=1x32b %d\n", widx, diffs[0]);
frameptr[widx] = diffs[0];
if (swapflag)
ms_gswap4a (&frameptr[widx]);
/* 2-bit nibble is 0b11 (0x3) */
frameptr[0] |= 0x3ul << (30 - 2 * widx);
packedsamples = 1;
}
diffcount -= packedsamples;
outputsamples += packedsamples;
} /* Done with words in frame */
/* Swap word with nibbles */
if (swapflag)
ms_gswap4a (&frameptr[0]);
} /* Done with frames */
/* Set Xn (reverse integration constant) in first frame to last sample */
if (Xnp)
*Xnp = *(input + outputsamples - 1);
if (swapflag)
ms_gswap4a (Xnp);
/* Pad any remaining bytes */
if ((frameidx * 64) < outputlength)
memset (output + (frameidx * 16), 0, outputlength - (frameidx * 64));
return outputsamples;
} /* End of msr_encode_steim1() */
/************************************************************************
* msr_encode_steim2:
*
* Encode Steim2 data frames from an array of 32-bit integers and
* place in supplied buffer. Swap if requested. Pad any space
* remaining in output buffer with zeros.
*
* diff0 is the first difference in the sequence and relates the first
* sample to the sample previous to it (not available to this
* function). It should be set to 0 if this value is not known.
*
* Return number of samples in output buffer on success, -1 on failure.
************************************************************************/
int
msr_encode_steim2 (int32_t *input, int samplecount, int32_t *output,
int outputlength, int32_t diff0,
char *srcname, int swapflag)
{
uint32_t *frameptr; /* Frame pointer in output */
int32_t *Xnp = NULL; /* Reverse integration constant, aka last sample */
int32_t diffs[7];
int32_t bitwidth[7];
int diffcount = 0;
int inputidx = 0;
int outputsamples = 0;
int maxframes = outputlength / 64;
int packedsamples = 0;
int frameidx;
int startnibble;
int widx;
int idx;
union dword {
int8_t d8[4];
int16_t d16[2];
int32_t d32;
} * word;
if (samplecount <= 0)
return 0;
if (!input || !output || outputlength <= 0)
return -1;
if (encodedebug)
ms_log (1, "Encoding Steim2 frames, samples: %d, max frames: %d, swapflag: %d\n",
samplecount, maxframes, swapflag);
/* Add first difference to buffers */
diffs[0] = diff0;
BITWIDTH (diffs[0], bitwidth[0]);
diffcount = 1;
for (frameidx = 0; frameidx < maxframes && outputsamples < samplecount; frameidx++)
{
frameptr = (uint32_t *)output + (16 * frameidx);
/* Set 64-byte frame to 0's */
memset (frameptr, 0, 64);
/* Save forward integration constant (X0), pointer to reverse integration constant (Xn)
* and set the starting nibble index depending on frame. */
if (frameidx == 0)
{
frameptr[1] = input[0];
if (encodedebug)
ms_log (1, "Frame %d: X0=%d\n", frameidx, frameptr[1]);
if (swapflag)
ms_gswap4a (&frameptr[1]);
Xnp = (int32_t *)&frameptr[2];
startnibble = 3; /* First frame: skip nibbles, X0, and Xn */
}
else
{
startnibble = 1; /* Subsequent frames: skip nibbles */
if (encodedebug)
ms_log (1, "Frame %d\n", frameidx);
}
for (widx = startnibble; widx < 16 && outputsamples < samplecount; widx++)
{
if (diffcount < 7)
{
/* Shift diffs and related bit widths to beginning of buffers */
for (idx = 0; idx < diffcount; idx++)
{
diffs[idx] = diffs[packedsamples + idx];
bitwidth[idx] = bitwidth[packedsamples + idx];
}
/* Add new diffs and determine bit width needed to represent */
for (idx = diffcount; idx < 7 && inputidx < (samplecount - 1); idx++, inputidx++)
{
diffs[idx] = *(input + inputidx + 1) - *(input + inputidx);
BITWIDTH (diffs[idx], bitwidth[idx]);
diffcount++;
}
}
/* Determine optimal packing by checking, in-order:
* 7 x 4-bit differences
* 6 x 5-bit differences
* 5 x 6-bit differences
* 4 x 8-bit differences
* 3 x 10-bit differences
* 2 x 15-bit differences
* 1 x 30-bit difference */
packedsamples = 0;
/* 7 x 4-bit differences */
if (diffcount == 7 && bitwidth[0] <= 4 &&
bitwidth[1] <= 4 && bitwidth[2] <= 4 && bitwidth[3] <= 4 &&
bitwidth[4] <= 4 && bitwidth[5] <= 4 && bitwidth[6] <= 4)
{
if (encodedebug)
ms_log (1, " W%02d: 11,10=7x4b %d %d %d %d %d %d %d\n",
widx, diffs[0], diffs[1], diffs[2], diffs[3], diffs[4], diffs[5], diffs[6]);
/* Mask the values, shift to proper location and set in word */
frameptr[widx] = ((uint32_t)diffs[6] & 0xFul);
frameptr[widx] |= ((uint32_t)diffs[5] & 0xFul) << 4;
frameptr[widx] |= ((uint32_t)diffs[4] & 0xFul) << 8;
frameptr[widx] |= ((uint32_t)diffs[3] & 0xFul) << 12;
frameptr[widx] |= ((uint32_t)diffs[2] & 0xFul) << 16;
frameptr[widx] |= ((uint32_t)diffs[1] & 0xFul) << 20;
frameptr[widx] |= ((uint32_t)diffs[0] & 0xFul) << 24;
/* 2-bit decode nibble is 0b10 (0x2) */
frameptr[widx] |= 0x2ul << 30;
/* 2-bit nibble is 0b11 (0x3) */
frameptr[0] |= 0x3ul << (30 - 2 * widx);
packedsamples = 7;
}
/* 6 x 5-bit differences */
else if (diffcount >= 6 &&
bitwidth[0] <= 5 && bitwidth[1] <= 5 && bitwidth[2] <= 5 &&
bitwidth[3] <= 5 && bitwidth[4] <= 5 && bitwidth[5] <= 5)
{
if (encodedebug)
ms_log (1, " W%02d: 11,01=6x5b %d %d %d %d %d %d\n",
widx, diffs[0], diffs[1], diffs[2], diffs[3], diffs[4], diffs[5]);
/* Mask the values, shift to proper location and set in word */
frameptr[widx] = ((uint32_t)diffs[5] & 0x1Ful);
frameptr[widx] |= ((uint32_t)diffs[4] & 0x1Ful) << 5;
frameptr[widx] |= ((uint32_t)diffs[3] & 0x1Ful) << 10;
frameptr[widx] |= ((uint32_t)diffs[2] & 0x1Ful) << 15;
frameptr[widx] |= ((uint32_t)diffs[1] & 0x1Ful) << 20;
frameptr[widx] |= ((uint32_t)diffs[0] & 0x1Ful) << 25;
/* 2-bit decode nibble is 0b01 (0x1) */
frameptr[widx] |= 0x1ul << 30;
/* 2-bit nibble is 0b11 (0x3) */
frameptr[0] |= 0x3ul << (30 - 2 * widx);
packedsamples = 6;
}
/* 5 x 6-bit differences */
else if (diffcount >= 5 &&
bitwidth[0] <= 6 && bitwidth[1] <= 6 && bitwidth[2] <= 6 &&
bitwidth[3] <= 6 && bitwidth[4] <= 6)
{
if (encodedebug)
ms_log (1, " W%02d: 11,00=5x6b %d %d %d %d %d\n",
widx, diffs[0], diffs[1], diffs[2], diffs[3], diffs[4]);
/* Mask the values, shift to proper location and set in word */
frameptr[widx] = ((uint32_t)diffs[4] & 0x3Ful);
frameptr[widx] |= ((uint32_t)diffs[3] & 0x3Ful) << 6;
frameptr[widx] |= ((uint32_t)diffs[2] & 0x3Ful) << 12;
frameptr[widx] |= ((uint32_t)diffs[1] & 0x3Ful) << 18;
frameptr[widx] |= ((uint32_t)diffs[0] & 0x3Ful) << 24;
/* 2-bit decode nibble is 0b00, nothing to set */
/* 2-bit nibble is 0b11 (0x3) */
frameptr[0] |= 0x3ul << (30 - 2 * widx);
packedsamples = 5;
}
/* 4 x 8-bit differences */
else if (diffcount >= 4 &&
bitwidth[0] <= 8 && bitwidth[1] <= 8 &&
bitwidth[2] <= 8 && bitwidth[3] <= 8)
{
if (encodedebug)
ms_log (1, " W%02d: 01=4x8b %d %d %d %d\n",
widx, diffs[0], diffs[1], diffs[2], diffs[3]);
word = (union dword *)&frameptr[widx];
word->d8[0] = diffs[0];
word->d8[1] = diffs[1];
word->d8[2] = diffs[2];
word->d8[3] = diffs[3];
/* 2-bit nibble is 0b01, only need to set 2nd bit */
frameptr[0] |= 0x1ul << (30 - 2 * widx);
packedsamples = 4;
}
/* 3 x 10-bit differences */
else if (diffcount >= 3 &&
bitwidth[0] <= 10 && bitwidth[1] <= 10 && bitwidth[2] <= 10)
{
if (encodedebug)
ms_log (1, " W%02d: 10,11=3x10b %d %d %d\n",
widx, diffs[0], diffs[1], diffs[2]);
/* Mask the values, shift to proper location and set in word */
frameptr[widx] = ((uint32_t)diffs[2] & 0x3FFul);
frameptr[widx] |= ((uint32_t)diffs[1] & 0x3FFul) << 10;
frameptr[widx] |= ((uint32_t)diffs[0] & 0x3FFul) << 20;
/* 2-bit decode nibble is 0b11 (0x3) */
frameptr[widx] |= 0x3ul << 30;
/* 2-bit nibble is 0b10 (0x2) */
frameptr[0] |= 0x2ul << (30 - 2 * widx);
packedsamples = 3;
}
/* 2 x 15-bit differences */
else if (diffcount >= 2 &&
bitwidth[0] <= 15 && bitwidth[1] <= 15)
{
if (encodedebug)
ms_log (1, " W%02d: 10,10=2x15b %d %d\n",
widx, diffs[0], diffs[1]);
/* Mask the values, shift to proper location and set in word */
frameptr[widx] = ((uint32_t)diffs[1] & 0x7FFFul);
frameptr[widx] |= ((uint32_t)diffs[0] & 0x7FFFul) << 15;
/* 2-bit decode nibble is 0b10 (0x2) */
frameptr[widx] |= 0x2ul << 30;
/* 2-bit nibble is 0b10 (0x2) */
frameptr[0] |= 0x2ul << (30 - 2 * widx);
packedsamples = 2;
}
/* 1 x 30-bit difference */
else if (diffcount >= 1 &&
bitwidth[0] <= 30)
{
if (encodedebug)
ms_log (1, " W%02d: 10,01=1x30b %d\n",
widx, diffs[0]);
/* Mask the value and set in word */
frameptr[widx] = ((uint32_t)diffs[0] & 0x3FFFFFFFul);
/* 2-bit decode nibble is 0b01 (0x1) */
frameptr[widx] |= 0x1ul << 30;
/* 2-bit nibble is 0b10 (0x2) */
frameptr[0] |= 0x2ul << (30 - 2 * widx);
packedsamples = 1;
}
else
{
ms_log (2, "msr_encode_steim2(%s): Unable to represent difference in <= 30 bits\n",
srcname);
return -1;
}
/* Swap encoded word except for 4x8-bit samples */
if (swapflag && packedsamples != 4)
ms_gswap4a (&frameptr[widx]);
diffcount -= packedsamples;
outputsamples += packedsamples;
} /* Done with words in frame */
/* Swap word with nibbles */
if (swapflag)
ms_gswap4a (&frameptr[0]);
} /* Done with frames */
/* Set Xn (reverse integration constant) in first frame to last sample */
if (Xnp)
*Xnp = *(input + outputsamples - 1);
if (swapflag)
ms_gswap4a (Xnp);
/* Pad any remaining bytes */
if ((frameidx * 64) < outputlength)
memset (output + (frameidx * 16), 0, outputlength - (frameidx * 64));
return outputsamples;
} /* End of msr_encode_steim2() */