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
713
714
715
716
717
718
719
720
|
/*
* streaminfo.cpp: A program for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "streaminfo.h"
bool cMarkAdStreamInfo::FindAC3AudioInfos(MarkAdContext *maContext, uchar *espkt, int eslen)
{
#pragma pack(1)
struct AC3HDR
{
unsigned Sync1:
8;
unsigned Sync2:
8;
unsigned CrcH:
8;
unsigned CrcL:
8;
unsigned FrameSizeIndex:
6;
unsigned SampleRateIndex:
2;
unsigned BsMod:
3;
unsigned BsID:
5;
unsigned LFE_Mix_VarField:
5;
unsigned AcMod:
3;
};
#pragma pack()
if ((!maContext) || (!espkt)) return false;
if (eslen<(int) sizeof(struct AC3HDR)) return false;
struct AC3HDR *ac3hdr = (struct AC3HDR *) espkt;
if ((ac3hdr->Sync1==0x0b) && (ac3hdr->Sync2==0x77))
{
// some extra checks
if (ac3hdr->SampleRateIndex==3) return false; // reserved
if (ac3hdr->FrameSizeIndex>=38) return false; // reserved
maContext->Audio.Info.Channels=0;
unsigned int lfe_bitmask = 0x0;
switch (ac3hdr->AcMod)
{
case 0:
maContext->Audio.Info.Channels=2;
lfe_bitmask=0x10;
break;
case 1:
maContext->Audio.Info.Channels=1;
lfe_bitmask=0x10;
break;
case 2:
maContext->Audio.Info.Channels=2;
lfe_bitmask=0x4;
break;
case 3:
maContext->Audio.Info.Channels=3;
lfe_bitmask=0x4;
break;
case 4:
maContext->Audio.Info.Channels=3;
lfe_bitmask=0x4;
break;
case 5:
maContext->Audio.Info.Channels=4;
lfe_bitmask=0x1;
break;
case 6:
maContext->Audio.Info.Channels=4;
lfe_bitmask=0x4;
break;
case 7:
maContext->Audio.Info.Channels=5;
lfe_bitmask=0x1;
break;
}
if ((ac3hdr->LFE_Mix_VarField & lfe_bitmask)==lfe_bitmask)
maContext->Audio.Info.Channels++;
return true;
}
return false;
}
bool cMarkAdStreamInfo::FindVideoInfos(MarkAdContext *maContext, uchar *pkt, int len)
{
if ((!maContext) || (!pkt) || (!len)) return false;
if (!maContext->Info.VPid.Type) return false;
switch (maContext->Info.VPid.Type)
{
case MARKAD_PIDTYPE_VIDEO_H264:
return FindH264VideoInfos(maContext, pkt, len);
break;
case MARKAD_PIDTYPE_VIDEO_H262:
return FindH262VideoInfos(maContext, pkt, len);
break;
}
return false;
}
bool cMarkAdStreamInfo::FindH264VideoInfos(MarkAdContext *maContext, uchar *pkt, int len)
{
if ((!maContext) || (!pkt) || (!len)) return false;
int nalu=pkt[4] & 0x1F;
if (nalu==NAL_AUD)
{
if (pkt[5]==0x10)
{
maContext->Video.Info.Pict_Type=MA_I_TYPE;
}
else
{
maContext->Video.Info.Pict_Type=0;
}
return true;
}
if (nalu==NAL_SPS)
{
uint8_t *nal_data=(uint8_t*) alloca(len);
if (!nal_data) return false;
int nal_len = nalUnescape(nal_data, pkt + 5, len - 5);
cBitStream bs(nal_data, nal_len);
uint32_t width=0;
uint32_t height=0;
uint32_t aspect_ratio_idc=0;
double frame_rate=0;
bool fixedframerate=false;
int sar_width=1,sar_height=1;
int profile_idc = bs.getU8(); // profile_idc
bs.skipBits(8); // constraint_setN_flags and reserved_zero_Nbits
bs.skipBits(8); // level_idc
bs.skipUeGolomb(); // seq_parameter_set_id
int i,j;
if ((profile_idc == 100) || (profile_idc == 110) || (profile_idc == 122) || (profile_idc == 244) ||
(profile_idc==44) || (profile_idc==83) || (profile_idc==86))
{
if (bs.getUeGolomb() == 3) // chroma_format_idc
bs.skipBit(); // separate_colour_plane_flag
bs.skipUeGolomb(); // bit_depth_luma_minus8
bs.skipUeGolomb(); // bit_depth_chroma_minus8
bs.skipBit(); // qpprime_y_zero_transform_bypass_flag
if (bs.getBit()) // seq_scaling_matrix_present_flag
{
for (i = 0; i < 8; ++i)
{
if (bs.getBit()) // seq_scaling_list_present_flag[i]
{
int last = 8, next = 8, size = (i < 6) ? 16 : 64;
for (j = 0; j < size; ++j)
{
if (next)
next = (last + bs.getSeGolomb()) & 0xff;
last = next ? next : last;
}
}
}
}
}
// H264.log2_max_frame_num=bs.getUeGolomb()+4;
bs.skipUeGolomb(); // log2_max_frame_num_minus4
int pic_order_cnt_type = bs.getUeGolomb(); // pic_order_cnt_type
if (pic_order_cnt_type == 0)
bs.skipUeGolomb(); // log2_max_pic_order_cnt_lsb_minus4
else if (pic_order_cnt_type == 1)
{
bs.skipBit(); // delta_pic_order_always_zero
bs.skipSeGolomb(); // offset_for_non_ref_pic
bs.skipSeGolomb(); // offset_for_top_to_bottom_field
j = bs.getUeGolomb(); // num_ref_frames_in_pic_order_cnt_cycle
for (i = 0; i < j; ++i)
bs.skipSeGolomb(); // offset_for_ref_frame[i]
}
bs.skipUeGolomb(); // max num_ref_frames
bs.skipBit(); // gaps_in_frame_num_value_allowed_flag
width = bs.getUeGolomb() + 1; // pic_width_in_mbs_minus1
height = bs.getUeGolomb() + 1; // pic_height_in_mbs_minus1
bool frame_mbs_only_flag = bs.getBit(); // frame_mbs_only_flag
width *= 16;
height *= 16 * (frame_mbs_only_flag ? 1 : 2);
if (!frame_mbs_only_flag)
bs.skipBit(); // mb_adaptive_frame_field_flag
bs.skipBit(); // direct_8x8_inference_flag
if (bs.getBit()) // frame_cropping_flag
{
uint32_t crop_left, crop_right, crop_top, crop_bottom;
crop_left = bs.getUeGolomb(); // frame_crop_left_offset
crop_right = bs.getUeGolomb(); // frame_crop_rigth_offset
crop_top = bs.getUeGolomb(); // frame_crop_top_offset
crop_bottom = bs.getUeGolomb(); // frame_crop_bottom_offset
width -= 2 * (crop_left + crop_right);
if (frame_mbs_only_flag)
height -= 2 * (crop_top + crop_bottom);
else
height -= 4 * (crop_top + crop_bottom);
}
// VUI parameters
if (bs.getBit()) // vui_parameters_present_flag
{
if (bs.getBit()) // aspect_ratio_info_present
{
aspect_ratio_idc = bs.getU8(); // aspect_ratio_idc
if (aspect_ratio_idc == 255) // extended sar
{
sar_width=bs.getBits(16); // sar_width
sar_height=bs.getBits(16); // sar_height
}
}
if (bs.getBit()) // overscan_info_present_flag
bs.skipBit(); // overscan_approriate_flag
if (bs.getBit()) // video_signal_type_present_flag
{
bs.skipBits(3); // video_format
bs.skipBit(); // video_full_range_flag
if (bs.getBit()) // colour_description_present_flag
{
bs.skipBits(8); // colour_primaries
bs.skipBits(8); // transfer_characteristics
bs.skipBits(8); // matrix_coefficients
}
}
if (bs.getBit()) // chroma_loc_info_present_flag
{
bs.skipUeGolomb(); // chroma_sample_loc_type_top_field
bs.skipUeGolomb(); // chroma_sample_loc_type_bottom_field
}
if (bs.getBit()) // timing_info_present_flag
{
uint32_t num_units_in_tick, time_scale;
num_units_in_tick = bs.getU32(); // num_units_in_tick
time_scale = bs.getU32(); // time_scale
if (num_units_in_tick > 0)
{
frame_rate = time_scale / num_units_in_tick;
if (frame_mbs_only_flag) frame_rate/=2;
}
fixedframerate=bs.getBit(); // fixed_frame_rate_flag
}
#if 0
int nal_hrd_parameters_present_flag = bs.getBit(); // nal_hrd_parameters_present_flag
if (nal_hrd_parameters_present_flag)
{
int cpb_cnt_minus1;
cpb_cnt_minus1 = bs.getUeGolomb(); // cpb_cnt_minus1
bs.skipBits(4); // bit_rate_scale
bs.skipBits(4); // cpb_size_scale
for (int i = 0; i <= cpb_cnt_minus1; i++)
{
bs.skipUeGolomb(); // bit_rate_value_minus1[i]
bs.skipUeGolomb(); // cpb_size_value_minus1[i]
bs.skipBit(); // cbr_flag[i]
}
bs.skipBits(5); // initial_cpb_removal_delay_length_minus1
bs.skipBits(5); // cpb_removal_delay_length_minus1
bs.skipBits(5); // dpb_output_delay_length_minus1
bs.skipBits(5); // time_offset_length
}
int vlc_hrd_parameters_present_flag = bs.getBit(); // vlc_hrd_parameters_present_flag
if (vlc_hrd_parameters_present_flag)
{
int cpb_cnt_minus1;
cpb_cnt_minus1 = bs.getUeGolomb(); // cpb_cnt_minus1
bs.skipBits(4); // bit_rate_scale
bs.skipBits(4); // cpb_size_scale
for (int i = 0; i <= cpb_cnt_minus1; i++)
{
bs.skipUeGolomb(); // bit_rate_value_minus1[i]
bs.skipUeGolomb(); // cpb_size_value_minus1[i]
bs.skipBit(); // cbr_flag[i]
}
bs.skipBits(5); // initial_cpb_removal_delay_length_minus1
bs.skipBits(5); // cpb_removal_delay_length_minus1
bs.skipBits(5); // dpb_output_delay_length_minus1
bs.skipBits(5); // time_offset_length
}
cpb_dpb_delays_present_flag = (nal_hrd_parameters_present_flag | vlc_hrd_parameters_present_flag);
if (cpb_dpb_delays_present_flag)
bs.skipBit(); // low_delay_hrd_flag
bs.skipBit(); // pic_struct_present_flag
if (bs.getBit()) // bitstream_restriction_flag
{
bs.skipBit(); // motion_vectors_over_pic_boundaries_flag
bs.skipUeGolomb(); // max_bytes_per_pic_denom
bs.skipUeGolomb(); // max_bits_per_mb_denom
bs.skipUeGolomb(); // log2_max_mv_length_horizontal
bs.skipUeGolomb(); // log2_max_mv_length_vertical
bs.skipUeGolomb(); // num_reorder_frames
bs.skipUeGolomb(); // max_dec_frame_buffering
}
#endif
}
if ((bs.getIndex() / 8)>0)
{
// set values
maContext->Video.Info.Interlaced=!frame_mbs_only_flag;
maContext->Video.Info.Width=width;
maContext->Video.Info.Height=height;
switch (aspect_ratio_idc)
{
case 1:
// square pixel
maContext->Video.Info.AspectRatio.Num=1;
maContext->Video.Info.AspectRatio.Den=1;
if (height==1080)
{
if (width==1920)
{
maContext->Video.Info.AspectRatio.Num=16;
maContext->Video.Info.AspectRatio.Den=9;
}
}
if (height==720)
{
if (width==960)
{
maContext->Video.Info.AspectRatio.Num=4;
maContext->Video.Info.AspectRatio.Den=3;
}
if (width==1280)
{
maContext->Video.Info.AspectRatio.Num=16;
maContext->Video.Info.AspectRatio.Den=9;
}
}
break;
case 2:
maContext->Video.Info.AspectRatio.Num=12;
maContext->Video.Info.AspectRatio.Den=31;
break;
case 3:
maContext->Video.Info.AspectRatio.Num=10;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 4:
maContext->Video.Info.AspectRatio.Num=16;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 5:
maContext->Video.Info.AspectRatio.Num=40;
maContext->Video.Info.AspectRatio.Den=33;
break;
case 6:
maContext->Video.Info.AspectRatio.Num=24;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 7:
maContext->Video.Info.AspectRatio.Num=20;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 8:
maContext->Video.Info.AspectRatio.Num=32;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 9:
maContext->Video.Info.AspectRatio.Num=80;
maContext->Video.Info.AspectRatio.Den=33;
break;
case 10:
maContext->Video.Info.AspectRatio.Num=18;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 11:
maContext->Video.Info.AspectRatio.Num=15;
maContext->Video.Info.AspectRatio.Den=11;
break;
case 12:
maContext->Video.Info.AspectRatio.Num=64;
maContext->Video.Info.AspectRatio.Den=33;
break;
case 13:
maContext->Video.Info.AspectRatio.Num=160;
maContext->Video.Info.AspectRatio.Den=99;
break;
case 14:
maContext->Video.Info.AspectRatio.Num=4;
maContext->Video.Info.AspectRatio.Den=3;
break;
case 15:
maContext->Video.Info.AspectRatio.Num=3;
maContext->Video.Info.AspectRatio.Den=2;
break;
case 16:
maContext->Video.Info.AspectRatio.Num=2;
maContext->Video.Info.AspectRatio.Den=1;
break;
case 255:
// extended SAR
maContext->Video.Info.AspectRatio.Num=sar_width;
maContext->Video.Info.AspectRatio.Den=sar_height;
break;
}
}
}
return false;
}
bool cMarkAdStreamInfo::FindH262VideoInfos(MarkAdContext *maContext, uchar *pkt, int len)
{
if ((!maContext) || (!pkt) || (!len)) return false;
struct H262_SequenceHdr
{
unsigned Sync1:
8;
unsigned Sync2:
8;
unsigned Sync3:
8;
unsigned Sync4:
8;
unsigned WidthH:
8;
unsigned HeightH:
4;
unsigned WidthL:
4;
unsigned HeightL:
8;
unsigned FrameRateIndex:
4;
unsigned AspectRatioIndex:
4;
};
struct H262_PictureHdr
{
unsigned Sync1:
8;
unsigned Sync2:
8;
unsigned Sync3:
8;
unsigned Sync4:
8;
unsigned TemporalReferenceH:
8;
unsigned VBVDelay:
3;
unsigned CodingType:
3;
unsigned TemporalReferenceL:
8;
};
struct H262_SequenceExt
{
unsigned Sync1:
8;
unsigned Sync2:
8;
unsigned Sync3:
8;
unsigned Sync4:
8;
unsigned Profile:
4;
unsigned StartCode:
4;
unsigned WidthExtH:
1;
unsigned Chroma:
2;
unsigned Progressive:
1;
unsigned Level:
4;
unsigned BitRateExtH:
5;
unsigned HightExt:
2;
unsigned WidthExtL:
1;
unsigned Marker:
1;
unsigned BitRateExtL:
7;
};
struct H262_SequenceExt *seqext = (struct H262_SequenceExt *) pkt;
struct H262_SequenceHdr *seqhdr = (struct H262_SequenceHdr *) pkt;
struct H262_PictureHdr *pichdr = (struct H262_PictureHdr *) pkt;
if (pichdr->Sync1==0 && pichdr->Sync2==0 && pichdr->Sync3==1 && pichdr->Sync4==0)
{
if (maContext->Video.Info.Height==0) return false;
switch (pichdr->CodingType)
{
case 1:
maContext->Video.Info.Pict_Type=MA_I_TYPE;
break;
case 2:
maContext->Video.Info.Pict_Type=MA_P_TYPE;
break;
case 3:
maContext->Video.Info.Pict_Type=MA_B_TYPE;
break;
case 4:
maContext->Video.Info.Pict_Type=MA_D_TYPE;
break;
default:
return false;
break;
}
return true;
}
if (seqext->Sync1==0 && seqext->Sync2==0 && seqext->Sync3==1 && seqext->Sync4==0xb5)
{
maContext->Video.Info.Interlaced=!seqext->Progressive;
}
if (seqhdr->Sync1==0 && seqhdr->Sync2==0 && seqhdr->Sync3==1 && seqhdr->Sync4==0xb3)
{
maContext->Video.Info.Height=(seqhdr->HeightH<<8)+seqhdr->HeightL;
maContext->Video.Info.Width=(seqhdr->WidthH<<4)+seqhdr->WidthL;
switch (seqhdr->AspectRatioIndex)
{
case 1:
maContext->Video.Info.AspectRatio.Num=1;
maContext->Video.Info.AspectRatio.Den=1;
break;
case 2:
maContext->Video.Info.AspectRatio.Num=4;
maContext->Video.Info.AspectRatio.Den=3;
break;
case 3:
maContext->Video.Info.AspectRatio.Num=16;
maContext->Video.Info.AspectRatio.Den=9;
break;
case 4:
maContext->Video.Info.AspectRatio.Num=11; // actually 2.21:1
maContext->Video.Info.AspectRatio.Den=5;
break;
default:
break;
}
double fps=0;
switch (seqhdr->FrameRateIndex)
{
case 1:
fps=24000/1001; // 23.976 fps NTSC encapsulated
break;
case 2:
fps=24.0; // Standard international cinema film rate
break;
case 3:
fps=25.0; // PAL (625/50) video frame rate
break;
case 4:
fps=30000/1001; // 29.97 NTSC video frame rate
break;
case 5:
fps=30.0; // NTSC drop frame (525/60) video frame rate
break;
case 6:
fps=50.0; // double frame rate/progressive PAL
break;
case 7:
fps=60000/1001; // double frame rate NTSC
break;
case 8:
fps=60.0; // double frame rate drop-frame NTSC
break;
default:
break;
}
if (fps)
{
if (fps!=maContext->Video.Info.FramesPerSecond)
{
maContext->Video.Info.FramesPerSecond=-fps;
}
}
}
return false;
}
// taken from femon
int cMarkAdStreamInfo::nalUnescape(uint8_t *dst, const uint8_t *src, int len)
{
int s = 0, d = 0;
while (s < len)
{
if (!src[s] && !src[s + 1])
{
// hit 00 00 xx
dst[d] = dst[d + 1] = 0;
s += 2;
d += 2;
if (src[s] == 3)
{
s++; // 00 00 03 xx --> 00 00 xx
if (s >= len)
return d;
}
}
dst[d++] = src[s++];
}
return d;
}
cBitStream::cBitStream(const uint8_t *buf, const int len)
: data(buf),
count(len*8),
index(0)
{
}
cBitStream::~cBitStream()
{
}
int cBitStream::getBit()
{
if (index >= count)
return (1); // -> no infinite colomb's ...
int r = (data[index >> 3] >> (7 - (index & 7))) & 1;
++index;
return (r);
}
uint32_t cBitStream::getBits(uint32_t n)
{
uint32_t r = 0;
while (n--)
r = (r | (getBit() << n));
return (r);
}
void cBitStream::skipBits(uint32_t n)
{
index += n;
}
uint32_t cBitStream::getUeGolomb()
{
int n = 0;
while (!getBit() && (n < 32))
n++;
return (n ? ((1 << n) - 1) + getBits(n) : 0);
}
int32_t cBitStream::getSeGolomb()
{
uint32_t r = getUeGolomb() + 1;
return ((r & 1) ? -(r >> 1) : (r >> 1));
}
void cBitStream::skipGolomb()
{
int n = 0;
while (!getBit() && (n < 32))
n++;
skipBits(n);
}
void cBitStream::skipUeGolomb()
{
skipGolomb();
}
void cBitStream::skipSeGolomb()
{
skipGolomb();
}
void cBitStream::byteAlign()
{
int n = index % 8;
if (n > 0)
skipBits(8 - n);
}
|