forked from google/spatial-media
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmetadata_utils.cpp
826 lines (735 loc) · 30.1 KB
/
metadata_utils.cpp
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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
/*****************************************************************************
*
* Copyright 2016 Varol Okan. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
****************************************************************************/
#include <iostream>
#include <sstream>
#include "mpeg/constants.h"
#include "mpeg/mpeg4_container.h"
#include "mpeg/sa3d.h"
#include "metadata_utils.h"
const char *SPHERICAL_TAGS_LIST[] = {
"Spherical",
"Stitched",
"StitchingSoftware",
"ProjectionType",
"SourceCount",
"StereoMode",
"InitialViewHeadingDegrees",
"InitialViewPitchDegrees",
"InitialViewRollDegrees",
"Timestamp",
"CroppedAreaImageWidthPixels",
"CroppedAreaImageHeightPixels",
"FullPanoWidthPixels",
"FullPanoHeightPixels",
"CroppedAreaLeftPixels",
"CroppedAreaTopPixels",
};
Metadata::Metadata ( )
{
m_pAudio = NULL;
}
Metadata::~Metadata ( )
{
}
void Metadata::setVideoXML ( std::string &str, mxml_node_t *pNode )
{
// m_strVideoXML = str;
m_mapVideo[str] = pNode;
}
void Metadata::setVideoXML ( std::string &str )
{
m_strVideoXML = str;
}
void Metadata::setAudio ( AudioMetadata *pAudio )
{
m_pAudio = pAudio;
}
std::string &Metadata::getVideoXML ( )
{
return m_strVideoXML;
}
AudioMetadata *Metadata::getAudio ( )
{
return m_pAudio;
}
ParsedMetadata::ParsedMetadata ( )
{
m_pAudio = NULL;
m_iNumAudioChannels = 0;
}
ParsedMetadata::~ParsedMetadata ( )
{
}
Utils::Utils ( )
{
}
Utils::~Utils ( )
{
}
/*
SPHERICAL_PREFIX = "{http://ns.google.com/videos/1.0/spherical/}"
SPHERICAL_TAGS = dict()
for tag in SPHERICAL_TAGS_LIST:
SPHERICAL_TAGS[SPHERICAL_PREFIX + tag] = tag
integer_regex_group = "(\d+)"
crop_regex = "^{0}$".format(":".join([integer_regex_group] * 6))
*/
Box *Utils::spherical_uuid ( std::string &strMetadata )
{
// Constructs a uuid containing spherical metadata.
Box *p = new Box;
// a box containing spherical metadata.
// if ( strUUID.length ( ) != 16 )
// std::cerr << "ERROR: Data mismatch" << std::endl;
int iSize = strMetadata.size ( );
const uint8_t *pMetadata = reinterpret_cast<const uint8_t*>(strMetadata.c_str());
memcpy ( p->m_name, constants::TAG_UUID, 4 );
p->m_iHeaderSize = 8;
p->m_iContentSize = 0;
p->m_pContents = new uint8_t[iSize + 16 + 1];
memcpy ( p->m_pContents, SPHERICAL_UUID_ID, 16 );
memcpy ((p->m_pContents+16), pMetadata, iSize );
p->m_iContentSize=iSize+16;
return p;
}
bool Utils::mpeg4_add_spherical ( Mpeg4Container *pMPEG4, std::fstream &inFile, std::string &strMetadata )
{
// Adds a spherical uuid box to an mpeg4 file for all video tracks.
//
// pMPEG4 : Mpeg4 file structure to add metadata.
// inFile : file handle, Source for uncached file contents.
// strMetadata: string, xml metadata to inject into spherical tag.
if ( ! pMPEG4 )
return false;
bool bAdded = false;
Container *pMoov = (Container *)pMPEG4->m_pMoovBox;
if ( ! pMoov )
return false;
std::vector<Box *>::iterator it = pMoov->m_listContents.begin ( );
while ( it != pMoov->m_listContents.end ( ) ) {
Container *pBox = (Container *)*it++;
if ( memcmp ( pBox->m_name, constants::TAG_TRAK, 4 ) == 0 ) {
bAdded = false;
pBox->remove ( constants::TAG_UUID );
std::vector<Box *>::iterator it2 = pBox->m_listContents.begin ( );
while ( it2 != pBox->m_listContents.end ( ) ) {
Container *pSub = (Container *)*it2++;
if ( memcmp ( pSub->m_name, constants::TAG_MDIA, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it3 = pSub->m_listContents.begin ( );
while ( it3 != pSub->m_listContents.end ( ) ) {
Box *pMDIA = *it3++;
if ( memcmp ( pMDIA->m_name, constants::TAG_HDLR, 4 ) != 0 )
continue;
char name[4];
int iPos = pMDIA->content_start ( ) + 8;
inFile.seekg( iPos );
inFile.read ( name, 4 );
if ( memcmp ( name, constants::TRAK_TYPE_VIDE, 4 ) == 0 ) {
bAdded = true;
break;
}
}
if ( bAdded ) {
if ( ! pBox->add ( spherical_uuid ( strMetadata ) ) )
return true;
break;
}
}
}
}
pMPEG4->resize ( );
return true;
}
bool Utils::mpeg4_add_spatial_audio ( Mpeg4Container *pMPEG4, std::fstream &inFile, AudioMetadata *pAudio )
{
// pMPEG4 is Mpeg4 file structure to add metadata.
// inFile: file handle, Source for uncached file contents.
// pAudio: dictionary ('ambisonic_type': string, 'ambisonic_order': int),
// Supports 'periphonic' ambisonic type only.
if ( ! pMPEG4 )
return false;
Container *pMoov = (Container *)pMPEG4->m_pMoovBox;
if ( ! pMoov )
return false;
std::vector<Box *>::iterator it = pMoov->m_listContents.begin ( );
while ( it != pMoov->m_listContents.end ( ) ) {
Container *pBox = (Container *)*it++;
if ( memcmp ( pBox->m_name, constants::TAG_TRAK, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it2 = pBox->m_listContents.begin ( );
while ( it2 != pBox->m_listContents.end ( ) ) {
Container *pSub = (Container *)*it2++;
if ( memcmp ( pSub->m_name, constants::TAG_MDIA, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it3 = pSub->m_listContents.begin ( );
while ( it3 != pSub->m_listContents.end ( ) ) {
Box *pMDIA = *it3++;
if ( memcmp ( pMDIA->m_name, constants::TAG_HDLR, 4 ) != 0 )
continue;
char name[4];
int iPos = pMDIA->content_start ( ) + 8;
inFile.seekg( iPos );
inFile.read ( name, 4 );
if ( memcmp ( name, constants::TAG_SOUN, 4 ) == 0 )
return inject_spatial_audio_atom ( inFile, pSub, pAudio );
}
}
}
return true;
}
bool Utils::mpeg4_add_audio_metadata ( Mpeg4Container *pMPEG4, std::fstream &inFile, AudioMetadata *pAudio )
{
int num_audio_tracks = get_num_audio_tracks ( pMPEG4, inFile );
if ( num_audio_tracks > 1 ) {
std::cerr << "Error: Expected 1 audio track. Found " << num_audio_tracks << std::endl;
return false;
}
return mpeg4_add_spatial_audio ( pMPEG4, inFile, pAudio );
}
bool inArray ( char *pName, const char **ppArray, int iSize )
{
if ( pName == NULL )
return false;
for ( int t=0; t<iSize; t++ ) {
if ( memcmp ( pName, ppArray[t], 4 ) == 0 )
return true;
}
return false;
}
bool Utils::inject_spatial_audio_atom( std::fstream &inFile, Box *pAudioMediaAtom, AudioMetadata *pAudio )
{
if ( ! pAudioMediaAtom || ! pAudio )
return false;
int iArraySize = sizeof ( constants::SOUND_SAMPLE_DESCRIPTIONS );
Container *pMediaAtom = (Container *)pAudioMediaAtom;
std::vector<Box *>::iterator it = pMediaAtom->m_listContents.begin ( );
while ( it != pMediaAtom->m_listContents.end ( ) ) {
Container *pAtom = (Container *)*it++;
if ( memcmp ( pAtom->m_name, constants::TAG_MINF, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it2 = pAtom->m_listContents.begin ( );
while ( it2 != pAtom->m_listContents.end ( ) ) {
Container *pElement = (Container *)*it2++;
if ( memcmp ( pElement->m_name, constants::TAG_STBL, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it3 = pElement->m_listContents.begin ( );
while ( it3 != pElement->m_listContents.end ( ) ) {
Container *pSub = (Container *)*it3++;
if ( memcmp ( pSub->m_name, constants::TAG_STSD, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it4 = pSub->m_listContents.begin ( );
while ( it4 != pSub->m_listContents.end ( ) ) {
Container *pSample = (Container *)*it4++;
if ( inArray ( pSample->m_name, constants::SOUND_SAMPLE_DESCRIPTIONS, iArraySize ) ) {
inFile.seekg ( pSample->m_iPosition + pSample->m_iHeaderSize + 16 );
std::string strAmbisonicType= pAudio->ambisonic_type;
uint32_t iAmbisonicOrder = pAudio->ambisonic_order;
int iNumChannels = get_num_audio_channels ( pSub, inFile );
int iNumAmbisonicComponents = get_expected_num_audio_components ( strAmbisonicType, iAmbisonicOrder );
if ( iNumChannels != iNumAmbisonicComponents ) {
std::cerr << "Error: Found " << iNumChannels << " audio channel(s). ";
std::cerr << "Expected " << iNumAmbisonicComponents << " chanel(s) for ";
std::cerr << strAmbisonicType << " ambisonics of order " << iAmbisonicOrder << "." << std::endl;
return false;
}
Box *pSA3DAtom = SA3DBox::create ( iNumChannels, *pAudio );
pSample->m_listContents.push_back ( pSA3DAtom );
}
}
}
}
}
return true;
}
std::map<std::string, std::string> Utils::parse_spherical_xml ( uint8_t *pContents ) // return sphericalDictionary
{
// Returns spherical metadata for a set of xml data.
// Args: string, spherical metadata xml contents.
// Retruns: dictionary containing the parsed spherical metadata values.
char buffer[8192];
char *ptr = NULL;
std::string strContents;
mxml_node_t *parsed_xml = mxmlLoadString ( NULL, (char *)pContents, MXML_OPAQUE_CALLBACK ); // MXML_NO_CALLBACK );
if ( ! parsed_xml ) {
std::cerr << "\t\tParser Error on XML. " << (char *)pContents << std::endl;
return m_mapSphericalDictionary;
}
// mxmlSaveString(tree, buffer, sizeof(buffer), MXML_NO_CALLBACK);
// ptr = mxmlSaveAllocString(tree, MXML_NO_CALLBACK);
mxml_node_t *pNode = mxmlFindElement ( parsed_xml, parsed_xml, "rdf:SphericalVideo", "xmlns:rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#", MXML_DESCEND );
if ( ! pNode ) {
pNode = mxmlFindElement ( parsed_xml, parsed_xml, "rdf:SphericalVideo", NULL, NULL, MXML_DESCEND );
if ( ! pNode ) {
std::cerr << "\t\tError could not find tag : \"rdf:SphericalVideo\"" << std::endl;
return m_mapSphericalDictionary;
}
mxmlElementSetAttr ( pNode, "xmlns:rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#" );
}
int iArraySize = (int)( sizeof ( SPHERICAL_TAGS_LIST ) / sizeof ( SPHERICAL_TAGS_LIST[0] ) );
std::string strText;
mxml_node_t *pChild = mxmlGetFirstChild ( pNode );
while ( pChild != NULL ) {
const char *pTag = mxmlGetElement ( pChild );
const char *pText = mxmlGetOpaque ( pChild );
if ( pTag != NULL ) {
const char *p = strchr ( pTag, ':' );
if ( p )
pTag = p+1;
if ( inArray ( (char *)pTag, SPHERICAL_TAGS_LIST, iArraySize ) ) {
strText = "";
if ( pText )
strText = pText;
std::cout << "\t\t" << pTag << " = " << strText << std::endl;
m_mapSphericalDictionary[pTag] = strText;
}
else {
std::cout << "\t\tUnknown: " << pTag<< " = " << strText << std::endl;
// tag = child.tag
// if child.tag[:len(spherical_prefix)] == spherical_prefix:
// tag = child.tag[len(spherical_prefix):]
}
}
pChild = mxmlGetNextSibling ( pChild );
}
return m_mapSphericalDictionary;
}
ParsedMetadata *Utils::parse_spherical_mpeg4 ( Mpeg4Container *pMPEG4, std::fstream &file ) // return metadata
{
// pMPEG4 is Mpeg4 file structure to add metadata.
// file: handle, Source for uncached file contents.
if ( ! pMPEG4 )
return NULL;
int iTrackNum = 0;
int iArraySize = (int)( sizeof ( constants::SOUND_SAMPLE_DESCRIPTIONS ) / sizeof ( constants::SOUND_SAMPLE_DESCRIPTIONS[0]) );
uint8_t buffer[16];
char *pNewedBuffer = NULL;
uint8_t *pSubElementID = NULL; // pointing to array of bytes
uint8_t *pContents = NULL;
Container *pMoov = (Container *)pMPEG4->m_pMoovBox;
if ( ! pMoov )
return NULL;
ParsedMetadata *pMetadata = new ParsedMetadata;
std::vector<Box *>::iterator it = pMoov->m_listContents.begin ( );
while ( it != pMoov->m_listContents.end ( ) ) {
Container *pBox = (Container *)*it++;
if ( memcmp ( pBox->m_name, constants::TAG_TRAK, 4 ) != 0 )
continue;
std::stringstream ss;
ss << "Track " << iTrackNum++;
std::string trackName = ss.str ( );
std::cout << "\t" << trackName << std::endl;
std::vector<Box *>::iterator it2 = pBox->m_listContents.begin ( );
while ( it2 != pBox->m_listContents.end ( ) ) {
Container *pSub = (Container *)*it2++;
if ( memcmp ( pSub->m_name, constants::TAG_UUID, 4 ) == 0 ) {
if ( pSub->m_pContents )
pSubElementID = pSub->m_pContents;
else {
file.seekg ( pSub->content_start ( ) );
file.read ( (char *)buffer, 16 );
pSubElementID = buffer;
}
if ( memcmp ( pSubElementID, SPHERICAL_UUID_ID, 16 ) == 0 ) {
if ( pSub->m_pContents )
pContents = &pSub->m_pContents[16];
else {
// fh.read(sub_element.content_size - 16)
pNewedBuffer = new char[pSub->m_iContentSize - 16];
file.read ( pNewedBuffer, pSub->m_iContentSize - 16);
pContents = (uint8_t *)pNewedBuffer;
}
// metadata.video[trackName] = parse_spherical_xml(contents, console)
pMetadata->m_video[trackName] = parse_spherical_xml ( pContents );
}
}
// Note: I am not sure if the Python script has a bug here wrt sub_element vs element
// The indentation is off !
// for element in mpeg4_file.moov_box.contents:
// if element.name == mpeg.constants.TAG_TRAK:
// for sub_element in element.contents:
// if sub_element.name == mpeg.constants.TAG_UUID:
// ...
// if sub_element.name == mpeg.constants.TAG_MDIA:
// ...
if ( memcmp ( pSub->m_name, constants::TAG_MDIA, 4 ) == 0 ) {
std::vector<Box *>::iterator it3 = pSub->m_listContents.begin ( );
while ( it3 != pSub->m_listContents.end ( ) ) {
Container *pMDIA = (Container *)*it3++;
if ( memcmp ( pMDIA->m_name, constants::TAG_MINF, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it4 = pMDIA->m_listContents.begin ( );
while ( it4 != pMDIA->m_listContents.end ( ) ) {
Container *pSTBL = (Container *)*it4++;
if ( memcmp ( pSTBL->m_name, constants::TAG_STBL, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it5 = pSTBL->m_listContents.begin ( );
while ( it5 != pSTBL->m_listContents.end ( ) ) {
Container *pSTSD = (Container *)*it5++;
if ( memcmp ( pSTSD->m_name, constants::TAG_STSD, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it6 = pSTSD->m_listContents.begin ( );
while ( it6 != pSTSD->m_listContents.end ( ) ) {
Container *pSA3D = (Container *)*it6++;
if ( ! inArray ( pSA3D->m_name, constants::SOUND_SAMPLE_DESCRIPTIONS, iArraySize ) )
continue;
pMetadata->m_iNumAudioChannels = get_num_audio_channels ( pSTSD, file );
std::vector<Box *>::iterator it7 = pSA3D->m_listContents.begin ( );
while ( it7 != pSA3D->m_listContents.end ( ) ) {
Container *pItem = (Container *)*it7++;
if ( memcmp ( pItem->m_name, constants::TAG_SA3D, 4 ) == 0 ) {
SA3DBox *pSA = (SA3DBox *)pItem;
pSA->print_box ( );
pMetadata->m_pAudio = new SA3DBox ( *pSA );
}
}
}
}
}
}
}
}
}
if ( pNewedBuffer )
delete []pNewedBuffer;
return pMetadata;
}
void Utils::parse_mpeg4 ( std::string &strFileName )
{
std::fstream file ( strFileName.c_str ( ), std::ios::in | std::ios::binary | std::ios::ate );
if ( ! file.is_open ( ) ) {
std::cerr << "Error \"" << strFileName << "\" does not exist or do not have permission." << std::endl;
return;
}
Mpeg4Container *pMPEG4 = Mpeg4Container::load ( file );
if ( ! pMPEG4 ) {
std::cerr << "Error, file could not be opened." << std::endl;
return;
}
std::cout << "File loaded." << std::endl;
parse_spherical_mpeg4 ( pMPEG4, file );
}
void Utils::inject_mpeg4 ( std::string &strInFile, std::string &strOutFile, Metadata *pMetadata )
{
std::fstream inFile ( strInFile.c_str ( ), std::ios::in | std::ios::binary | std::ios::ate );
if ( ! inFile.is_open ( ) ) {
std::cerr << "Error \"" << strInFile << "\" does not exist or do not have permission." << std::endl;
return;
}
Mpeg4Container *pMPEG4 = Mpeg4Container::load ( inFile );
if ( ! pMPEG4 ) {
std::cerr << "Error, file could not be opened." << std::endl;
return;
}
bool bRet = mpeg4_add_spherical ( pMPEG4, inFile, pMetadata->getVideoXML ( ) );
if ( ! bRet ) {
std::cerr << "Error failed to insert spherical data" << std::endl;
}
if ( pMetadata->getAudio ( ) ) {
bRet = mpeg4_add_audio_metadata ( pMPEG4, inFile, pMetadata->getAudio ( ) );
if ( ! bRet ) {
std::cerr << "Error failed to insert spatial audio data" << std::endl;
}
}
std::cout << "Saved file settings" << std::endl;
parse_spherical_mpeg4 ( pMPEG4, inFile );
std::fstream outFile ( strOutFile.c_str ( ), std::ios::out | std::ios::binary );
if ( ! outFile.is_open ( ) ) {
std::cerr << "Error file: \"" << strOutFile << "\" could not create or do not have permission." << std::endl;
return;
}
pMPEG4->save ( inFile, outFile, 0 );
}
void Utils::parse_metadata ( std::string &strFile )
{
std::fstream inFile ( strFile.c_str ( ), std::ios::in | std::ios::binary | std::ios::ate );
if ( ! inFile.is_open ( ) ) {
std::cerr << "Error \"" << strFile << "\" does not exist or do not have permission." << std::endl;
return;
}
inFile.close ( );
int iArraySize = sizeof ( MPEG_FILE_EXTENSIONS ) / sizeof ( MPEG_FILE_EXTENSIONS[1] );
std::string strExt;
std::string::size_type idx = strFile.rfind ( '.' );
if ( idx != std::string::npos )
strExt = strFile.substr ( idx + 1 );
std::cout << "Processing: " << strFile << std::endl;
if ( ! inArray ( (char *)strExt.c_str ( ), MPEG_FILE_EXTENSIONS, iArraySize ) ) {
std::cerr << "Unknown file type" << std::endl;
return;
}
return parse_mpeg4 ( strFile );
}
void Utils::inject_metadata ( std::string &strInFile, std::string &strOutFile, Metadata *pMetadata )
{
if ( strInFile == strOutFile ) {
std::cerr << "Input and output cannot be the same" << std::endl;
return;
}
std::fstream inFile ( strInFile.c_str ( ), std::ios::in | std::ios::binary | std::ios::ate );
if ( ! inFile.is_open ( ) ) {
std::cerr << "Error \"" << strInFile << "\" does not exist or do not have permission." << std::endl;
return;
}
inFile.close ( );
int iArraySize = sizeof ( MPEG_FILE_EXTENSIONS ) / sizeof ( MPEG_FILE_EXTENSIONS[1] );
std::string strExt;
std::string::size_type idx = strInFile.rfind ( '.' );
if ( idx != std::string::npos )
strExt = strInFile.substr ( idx );
std::cout << "Processing: " << strInFile << std::endl;
if ( ! inArray ( (char *)strExt.c_str ( ), MPEG_FILE_EXTENSIONS, iArraySize ) ) {
std::cerr << "Unknown file type" << std::endl;
return;
}
return inject_mpeg4 ( strInFile, strOutFile, pMetadata );
}
std::string &Utils::generate_spherical_xml ( SpatialMedia::Parser::enMode stereo, int *crop )
{
// Configure inject xml
static std::string empty;
std::string additional_xml;
if ( stereo == SpatialMedia::Parser::SM_TOP_BOTTOM )
additional_xml += SPHERICAL_XML_CONTENTS_TOP_BOTTOM;
if ( stereo == SpatialMedia::Parser::SM_LEFT_RIGHT )
additional_xml += SPHERICAL_XML_CONTENTS_LEFT_RIGHT;
if ( crop ) {
// -c CROP, --crop CROP crop region. Must specify 6 integers in the form of
// "w:h:f_w:f_h:x:y" where w=CroppedAreaImageWidthPixels
// h=CroppedAreaImageHeightPixels f_w=FullPanoWidthPixels
// f_h=FullPanoHeightPixels x=CroppedAreaLeftPixels
// y=CroppedAreaTopPixels
int cropped_width_pixels = crop[0];
int cropped_height_pixels = crop[1];
int full_width_pixels = crop[2];
int full_height_pixels = crop[3];
int cropped_offset_left_pixels= crop[4];
int cropped_offset_top_pixels = crop[5];
// This should never happen based on the crop regex.
if ( full_width_pixels <= 0 || full_height_pixels <= 0 ) {
std::cerr << "Error with crop params: full pano dimensions are ";
std::cerr << "invalid: width = " << full_width_pixels << " height = " << full_height_pixels;
return empty;
}
if ( cropped_width_pixels <= 0 || cropped_height_pixels <= 0 ||
cropped_width_pixels > full_width_pixels || cropped_height_pixels > full_height_pixels ) {
std::cerr << "Error with crop params: cropped area dimensions are ";
std::cerr << "invalid: width = " << cropped_width_pixels << " height = " << cropped_height_pixels;
return empty;
}
// We are pretty restrictive and don't allow anything strange. There
// could be use-cases for a horizontal offset that essentially
// translates the domain, but we don't support this (so that no
// extra work has to be done on the client).
int total_width = cropped_offset_left_pixels + cropped_width_pixels;
int total_height = cropped_offset_top_pixels + cropped_height_pixels;
if ( cropped_offset_left_pixels < 0 || cropped_offset_top_pixels < 0 ||
total_width > full_width_pixels || total_height > full_height_pixels ) {
std::cerr << "Error with crop params: cropped area offsets are ";
std::cerr << "invalid: left = " << cropped_offset_left_pixels << " top = " << cropped_offset_top_pixels;
std::cerr << " left+cropped width: " << total_width << "top+cropped height: " << total_height;
return empty;
}
// OMG: printf need to fall back to ugly-ass c-style
int iSize = SPHERICAL_XML_CONTENTS_CROP_FORMAT.length ( ) + 6 * 5; // 6 variables up to 99999
char *buffer = new char[iSize];
snprintf ( buffer, iSize, SPHERICAL_XML_CONTENTS_CROP_FORMAT.c_str ( ), cropped_width_pixels, cropped_height_pixels,
full_width_pixels, full_height_pixels,cropped_offset_left_pixels, cropped_offset_top_pixels );
additional_xml += buffer;
delete buffer;
}
m_strSphericalXML = SPHERICAL_XML_HEADER + SPHERICAL_XML_CONTENTS + additional_xml + SPHERICAL_XML_FOOTER;
return m_strSphericalXML;
}
uint8_t Utils::get_descriptor_length ( std::fstream &inFile )
{
// Derives the length of the MP4 elementary stream descriptor at the
// current position in the input file.
int t;
uint8_t iVal = 0;
uint8_t descriptor_length = 0;
for ( t=0;t<4; t++ ) {
iVal = Box::readUint8 ( inFile );
// Python :: descriptor_length = (descriptor_length << 7 | ord(size_byte) & int("0x7f", 0))
descriptor_length = ( descriptor_length << 7 ) | ( iVal & 0x7F );
if ( iVal != 0x80 )
break;
}
return descriptor_length;
}
int32_t Utils::get_expected_num_audio_components ( std::string &strAmbisonicType, uint32_t iAmbisonicsOrder )
{
// Returns the expected number of ambisonic components for a given
// ambisonic type and ambisonic order.
if ( strAmbisonicType == "periphonic" )
return ((iAmbisonicsOrder + 1) * (iAmbisonicsOrder + 1));
return -1;
}
int32_t Utils::get_num_audio_channels ( Container *pSTSD, std::fstream &inFile )
{
if ( ! pSTSD )
return -1;
if ( memcmp ( pSTSD->m_name, constants::TAG_STSD, 4 ) != 0 ) {
std::cerr << "get_num_audio_channels should be given a STSD box" << std::endl;
return -1;
}
int iArraySize = (int)(sizeof ( constants::SOUND_SAMPLE_DESCRIPTIONS ) / sizeof ( constants::SOUND_SAMPLE_DESCRIPTIONS[0] ) );
std::vector<Box *>::iterator it = pSTSD->m_listContents.begin ( );
while ( it != pSTSD->m_listContents.end ( ) ) {
Container *pSample = (Container *)*it++;
if ( memcmp ( pSample->m_name, constants::TAG_MP4A, 4 ) == 0 )
return get_aac_num_channels ( pSample, inFile );
else if ( inArray ( pSample->m_name, constants::SOUND_SAMPLE_DESCRIPTIONS, iArraySize ) )
return get_sample_description_num_channels ( pSample, inFile );
}
return -1;
}
uint32_t Utils::get_sample_description_num_channels ( Container *pSample, std::fstream &inFile )
{
// Reads the number of audio channels from a sound sample description.
char buffer[8];
int iPos = inFile.tellg ( );
inFile.seekg ( pSample->content_start ( ) + 8 );
int16_t iAudioChannels, iSampleSizeBytes;
int16_t iVersion = Box::readInt16 ( inFile );
int16_t iRevLevel = Box::readInt16 ( inFile );
int32_t iVendor = Box::readInt32 ( inFile );
if ( iVersion == 0 ) {
iAudioChannels = Box::readInt16 ( inFile );
iSampleSizeBytes= Box::readInt16 ( inFile );
}
else if ( iVersion == 1 ) {
iAudioChannels = Box::readInt16 ( inFile );
iSampleSizeBytes= Box::readInt16 ( inFile );
int32_t iBytesPerPacket, iBytesPerFrame, iBytesPerSample;
iBytesPerPacket = Box::readInt32 ( inFile );
iBytesPerFrame = Box::readInt32 ( inFile );
iBytesPerSample = Box::readInt32 ( inFile );
}
else if ( iVersion == 2 ) {
int16_t always_3, always_16, always_minus_2, always_0;
int32_t always_65536, size_of_struct_only;
double audio_sample_rate;
always_3 = Box::readInt16 ( inFile );
always_16 = Box::readInt16 ( inFile );
always_minus_2 = Box::readInt16 ( inFile );
always_0 = Box::readInt16 ( inFile );
always_65536 = Box::readInt32 ( inFile );
size_of_struct_only= Box::readInt32 ( inFile );
audio_sample_rate = Box::readDouble( inFile );
iAudioChannels = Box::readInt16 ( inFile );
}
else {
inFile.seekg ( iPos );
std::cerr << "Unsupported version for " << pSample->name ( ) << " box" << std::endl;
return -1;
}
inFile.seekg ( iPos );
return iAudioChannels;
}
int32_t Utils::get_aac_num_channels ( Container *pBox, std::fstream &inFile )
{
// Reads the number of audio channels from AAC's AudioSpecificConfig
// descriptor within the esds child box of the input mp4a or wave box.
int iPos = inFile.tellg ( );
bool bFound = memcmp ( pBox->m_name, constants::TAG_MP4A, 4 ) == 0;
bFound |= memcmp ( pBox->m_name, constants::TAG_WAVE, 4 ) == 0;
if ( ! bFound )
return -1;
int32_t channel_configuration = 0;
std::vector<Box *>::iterator it = pBox->m_listContents.begin ( );
while ( it != pBox->m_listContents.end ( ) ) {
Container *pElement = (Container *)*it++;
if ( memcmp ( pElement->m_name, constants::TAG_WAVE, 4 ) == 0 ) {
channel_configuration = get_aac_num_channels ( pElement, inFile );
break;
}
if ( memcmp ( pElement->m_name, constants::TAG_ESDS, 4 ) != 0 )
continue;
inFile.seekg ( pElement->content_start ( ) + 4 );
char descriptor_tag = Box::readInt8 ( inFile );
// Verify the read descriptor is an elementary stream descriptor
if ( descriptor_tag != 3 ) { // Not an MP4 elementary stream.
std::cerr << "Error: failed to read elementary stream descriptor." << std::endl;
return -1;
}
get_descriptor_length ( inFile );
inFile.seekg ( 3, std::ios_base::cur ); // Seek to the decoder configuration descriptor
char config_descriptor_tag = Box::readInt8 ( inFile );
// Verify the read descriptor is a decoder config. descriptor.
if ( config_descriptor_tag != 4 ) {
std::cerr << "Error: failed to read decoder config. descriptor." << std::endl;
return -1;
}
get_descriptor_length ( inFile );
inFile.seekg ( 13, std::ios_base::cur ); // offset to the decoder specific config descriptor.
char decoder_specific_descriptor_tag = Box::readInt8 ( inFile );
// Verify the read descriptor is a decoder specific info descriptor
if ( decoder_specific_descriptor_tag != 5 ) {
std::cerr << "Error: failed to read MP4 audio decoder specific config." << std::endl;
return -1;
}
int audio_specific_descriptor_size = get_descriptor_length ( inFile );
// assert ( audio_specific_descriptor_size >= 2 );
int16_t decoder_descriptor = Box::readInt16 ( inFile );
uint32_t object_type = ( 0xF800 & decoder_descriptor ) >> 11;
uint32_t sampling_frequency_index = ( 0x0780 & decoder_descriptor ) >> 7;
if ( sampling_frequency_index == 0 ) {
// TODO: If the sample rate is 96kHz an additional 24 bit offset
// value here specifies the actual sample rate.
std::cerr << "Error: Greater than 48khz audio is currently not supported." << std::endl;
return -1;
}
channel_configuration = ( 0x0078 & decoder_descriptor ) >> 3;
}
inFile.seekg ( iPos );
return channel_configuration;
}
uint32_t Utils::get_num_audio_tracks ( Mpeg4Container *pMPEG4, std::fstream &inFile )
{
// Returns the number of audio track in the input mpeg4 file.
int num_audio_tracks = 0;
Container *pMoov = (Container *)pMPEG4->m_pMoovBox;
if ( ! pMoov )
return 0;
std::vector<Box *>::iterator it = pMoov->m_listContents.begin ( );
while ( it != pMoov->m_listContents.end ( ) ) {
Container *pBox = (Container *)*it++;
if ( memcmp ( pBox->m_name, constants::TAG_TRAK, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it2 = pBox->m_listContents.begin ( );
while ( it2 != pBox->m_listContents.end ( ) ) {
Container *pSub = (Container *)*it2++;
if ( memcmp ( pSub->m_name, constants::TAG_MDIA, 4 ) != 0 )
continue;
std::vector<Box *>::iterator it3 = pSub->m_listContents.begin ( );
while ( it3 != pSub->m_listContents.end ( ) ) {
Container *pMDIA = (Container *)*it3++;
if ( memcmp ( pMDIA->m_name, constants::TAG_HDLR, 4 ) != 0 )
continue;
int iPos = pMDIA->content_start ( ) + 8;
inFile.seekg ( iPos );
char buffer[4];
inFile.read ( buffer, 4 );
if ( memcmp ( buffer, constants::TAG_SOUN, 4 ) == 0 )
num_audio_tracks++;
}
}
}
return num_audio_tracks;
}