-
Notifications
You must be signed in to change notification settings - Fork 502
/
OMXReader.cpp
1339 lines (1126 loc) · 34.9 KB
/
OMXReader.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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2005-2008 Team XBMC
* http://www.xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#if (defined HAVE_CONFIG_H) && (!defined WIN32)
#include "config.h"
#elif defined(_WIN32)
#include "system.h"
#endif
#include "OMXReader.h"
#include "OMXClock.h"
#include <stdio.h>
#include <unistd.h>
#ifndef STANDALONE
#include "FileItem.h"
#endif
#include "linux/XMemUtils.h"
#ifndef STANDALONE
#include "utils/BitstreamStats.h"
#endif
#define MAX_DATA_SIZE_VIDEO 8 * 1024 * 1024
#define MAX_DATA_SIZE_AUDIO 2 * 1024 * 1024
#define MAX_DATA_SIZE 10 * 1024 * 1024
static bool g_abort = false;
OMXReader::OMXReader()
{
m_open = false;
m_filename = "";
m_bMatroska = false;
m_bAVI = false;
m_bMpeg = false;
g_abort = false;
m_pFile = NULL;
m_ioContext = NULL;
m_pFormatContext = NULL;
m_eof = false;
m_chapter_count = 0;
m_iCurrentPts = DVD_NOPTS_VALUE;
for(int i = 0; i < MAX_STREAMS; i++)
m_streams[i].extradata = NULL;
ClearStreams();
pthread_mutex_init(&m_lock, NULL);
}
OMXReader::~OMXReader()
{
Close();
pthread_mutex_destroy(&m_lock);
}
void OMXReader::Lock()
{
pthread_mutex_lock(&m_lock);
}
void OMXReader::UnLock()
{
pthread_mutex_unlock(&m_lock);
}
static int interrupt_cb(void *unused)
{
if(g_abort)
return 1;
return 0;
}
static int dvd_file_read(void *h, uint8_t* buf, int size)
{
if(interrupt_cb(NULL))
return -1;
XFILE::CFile *pFile = (XFILE::CFile *)h;
return pFile->Read(buf, size);
}
static offset_t dvd_file_seek(void *h, offset_t pos, int whence)
{
if(interrupt_cb(NULL))
return -1;
XFILE::CFile *pFile = (XFILE::CFile *)h;
if(whence == AVSEEK_SIZE)
return pFile->GetLength();
else
return pFile->Seek(pos, whence & ~AVSEEK_FORCE);
}
bool OMXReader::Open(std::string filename, bool dump_format)
{
if (!m_dllAvUtil.Load() || !m_dllAvCodec.Load() || !m_dllAvFormat.Load())
return false;
m_iCurrentPts = DVD_NOPTS_VALUE;
m_filename = filename;
m_speed = DVD_PLAYSPEED_NORMAL;
m_program = UINT_MAX;
const AVIOInterruptCB int_cb = { interrupt_cb, NULL };
ClearStreams();
m_dllAvFormat.av_register_all();
m_dllAvFormat.avformat_network_init();
m_dllAvUtil.av_log_set_level(dump_format ? AV_LOG_INFO:AV_LOG_QUIET);
int result = -1;
AVInputFormat *iformat = NULL;
unsigned char *buffer = NULL;
unsigned int flags = READ_TRUNCATED | READ_BITRATE | READ_CHUNKED;
#ifndef STANDALONE
if( CFileItem(m_filename, false).IsInternetStream() )
flags |= READ_CACHED;
#endif
if(m_filename.substr(0, 8) == "shout://" )
m_filename.replace(0, 8, "http://");
if(m_filename.substr(0,6) == "mms://" || m_filename.substr(0,7) == "mmsh://" || m_filename.substr(0,7) == "mmst://" || m_filename.substr(0,7) == "mmsu://" ||
m_filename.substr(0,7) == "http://" ||
m_filename.substr(0,7) == "rtmp://" || m_filename.substr(0,6) == "udp://" ||
m_filename.substr(0,7) == "rtsp://" )
{
// ffmpeg dislikes the useragent from AirPlay urls
//int idx = m_filename.Find("|User-Agent=AppleCoreMedia");
size_t idx = m_filename.find("|");
if(idx != string::npos)
m_filename = m_filename.substr(0, idx);
result = m_dllAvFormat.avformat_open_input(&m_pFormatContext, m_filename.c_str(), iformat, NULL);
if(result < 0)
{
CLog::Log(LOGERROR, "COMXPlayer::OpenFile - avformat_open_input %s ", m_filename.c_str());
Close();
return false;
}
}
else
{
m_pFile = new CFile();
if (!m_pFile->Open(m_filename, flags))
{
CLog::Log(LOGERROR, "COMXPlayer::OpenFile - %s ", m_filename.c_str());
Close();
return false;
}
buffer = (unsigned char*)m_dllAvUtil.av_malloc(FFMPEG_FILE_BUFFER_SIZE);
m_ioContext = m_dllAvFormat.avio_alloc_context(buffer, FFMPEG_FILE_BUFFER_SIZE, 0, m_pFile, dvd_file_read, NULL, dvd_file_seek);
m_ioContext->max_packet_size = 6144;
if(m_ioContext->max_packet_size)
m_ioContext->max_packet_size *= FFMPEG_FILE_BUFFER_SIZE / m_ioContext->max_packet_size;
if(m_pFile->IoControl(IOCTRL_SEEK_POSSIBLE, NULL) == 0)
m_ioContext->seekable = 0;
m_dllAvFormat.av_probe_input_buffer(m_ioContext, &iformat, m_filename.c_str(), NULL, 0, 0);
if(!iformat)
{
CLog::Log(LOGERROR, "COMXPlayer::OpenFile - av_probe_input_buffer %s ", m_filename.c_str());
Close();
return false;
}
m_pFormatContext = m_dllAvFormat.avformat_alloc_context();
m_pFormatContext->pb = m_ioContext;
result = m_dllAvFormat.avformat_open_input(&m_pFormatContext, m_filename.c_str(), iformat, NULL);
if(result < 0)
{
Close();
return false;
}
}
// set the interrupt callback, appeared in libavformat 53.15.0
m_pFormatContext->interrupt_callback = int_cb;
m_bMatroska = strncmp(m_pFormatContext->iformat->name, "matroska", 8) == 0; // for "matroska.webm"
m_bAVI = strcmp(m_pFormatContext->iformat->name, "avi") == 0;
m_bMpeg = strcmp(m_pFormatContext->iformat->name, "mpeg") == 0;
// if format can be nonblocking, let's use that
m_pFormatContext->flags |= AVFMT_FLAG_NONBLOCK;
// analyse very short to speed up mjpeg playback start
if (iformat && (strcmp(iformat->name, "mjpeg") == 0) && m_ioContext->seekable == 0)
m_pFormatContext->max_analyze_duration = 500000;
#ifdef STANDALONE
if(/*m_bAVI || */m_bMatroska)
m_pFormatContext->max_analyze_duration = 0;
#endif
result = m_dllAvFormat.avformat_find_stream_info(m_pFormatContext, NULL);
if(result < 0)
{
Close();
return false;
}
if(!GetStreams())
{
Close();
return false;
}
if(m_pFile)
{
int64_t len = m_pFile->GetLength();
int64_t tim = GetStreamLength();
if(len > 0 && tim > 0)
{
unsigned rate = len * 1000 / tim;
unsigned maxrate = rate + 1024 * 1024 / 8;
if(m_pFile->IoControl(IOCTRL_CACHE_SETRATE, &maxrate) >= 0)
CLog::Log(LOGDEBUG, "COMXPlayer::OpenFile - set cache throttle rate to %u bytes per second", maxrate);
}
}
m_speed = DVD_PLAYSPEED_NORMAL;
if(dump_format)
m_dllAvFormat.av_dump_format(m_pFormatContext, 0, m_filename.c_str(), 0);
UpdateCurrentPTS();
m_open = true;
return true;
}
void OMXReader::ClearStreams()
{
m_audio_index = -1;
m_video_index = -1;
m_subtitle_index = -1;
m_audio_count = 0;
m_video_count = 0;
m_subtitle_count = 0;
for(int i = 0; i < MAX_STREAMS; i++)
{
if(m_streams[i].extradata)
free(m_streams[i].extradata);
memset(m_streams[i].language, 0, sizeof(m_streams[i].language));
m_streams[i].codec_name = "";
m_streams[i].name = "";
m_streams[i].type = OMXSTREAM_NONE;
m_streams[i].stream = NULL;
m_streams[i].extradata = NULL;
m_streams[i].extrasize = 0;
m_streams[i].index = 0;
m_streams[i].id = 0;
}
m_program = UINT_MAX;
}
bool OMXReader::Close()
{
if (m_pFormatContext)
{
if (m_ioContext && m_pFormatContext->pb && m_pFormatContext->pb != m_ioContext)
{
CLog::Log(LOGWARNING, "CDVDDemuxFFmpeg::Dispose - demuxer changed our byte context behind our back, possible memleak");
m_ioContext = m_pFormatContext->pb;
}
m_dllAvFormat.avformat_close_input(&m_pFormatContext);
}
if(m_ioContext)
{
m_dllAvUtil.av_free(m_ioContext->buffer);
m_dllAvUtil.av_free(m_ioContext);
}
m_ioContext = NULL;
m_pFormatContext = NULL;
if(m_pFile)
{
m_pFile->Close();
delete m_pFile;
m_pFile = NULL;
}
m_dllAvFormat.avformat_network_deinit();
m_dllAvUtil.Unload();
m_dllAvCodec.Unload();
m_dllAvFormat.Unload();
m_open = false;
m_filename = "";
m_bMatroska = false;
m_bAVI = false;
m_bMpeg = false;
m_video_count = 0;
m_audio_count = 0;
m_subtitle_count = 0;
m_audio_index = -1;
m_video_index = -1;
m_subtitle_index = -1;
m_eof = false;
m_chapter_count = 0;
m_iCurrentPts = DVD_NOPTS_VALUE;
m_speed = DVD_PLAYSPEED_NORMAL;
ClearStreams();
return true;
}
/*void OMXReader::FlushRead()
{
m_iCurrentPts = DVD_NOPTS_VALUE;
if(!m_pFormatContext)
return;
ff_read_frame_flush(m_pFormatContext);
}*/
bool OMXReader::SeekTime(int64_t seek_ms, int seek_flags, double *startpts)
{
if(seek_ms < 0)
seek_ms = 0;
if(!m_pFile || !m_pFormatContext)
return false;
if(!m_pFile->IoControl(IOCTRL_SEEK_POSSIBLE, NULL))
return false;
Lock();
//FlushRead();
if(m_ioContext)
m_ioContext->buf_ptr = m_ioContext->buf_end;
int64_t seek_pts = (int64_t)seek_ms * (AV_TIME_BASE / 1000);
if (m_pFormatContext->start_time != (int64_t)AV_NOPTS_VALUE)
seek_pts += m_pFormatContext->start_time;
/* seek behind eof */
if((seek_pts / AV_TIME_BASE) > (GetStreamLength() / 1000))
{
m_eof = true;
UnLock();
return true;
}
int ret = m_dllAvFormat.av_seek_frame(m_pFormatContext, -1, seek_pts, seek_flags ? AVSEEK_FLAG_BACKWARD : 0);
if(ret >= 0)
{
UpdateCurrentPTS();
m_eof = false;
}
if(m_iCurrentPts == DVD_NOPTS_VALUE)
{
CLog::Log(LOGDEBUG, "OMXReader::SeekTime - unknown position after seek");
}
else
{
CLog::Log(LOGDEBUG, "OMXReader::SeekTime - seek ended up on time %d",(int)(m_iCurrentPts / DVD_TIME_BASE * 1000));
}
if(startpts)
*startpts = DVD_MSEC_TO_TIME(seek_ms);
UnLock();
return (ret >= 0);
}
AVMediaType OMXReader::PacketType(OMXPacket *pkt)
{
if(!m_pFormatContext || !pkt)
return AVMEDIA_TYPE_UNKNOWN;
return m_pFormatContext->streams[pkt->stream_index]->codec->codec_type;
}
OMXPacket *OMXReader::Read()
{
assert(!IsEof());
AVPacket pkt;
OMXPacket *m_omx_pkt = NULL;
int result = -1;
if(!m_pFormatContext)
return NULL;
Lock();
// assume we are not eof
if(m_pFormatContext->pb)
m_pFormatContext->pb->eof_reached = 0;
// keep track if ffmpeg doesn't always set these
pkt.size = 0;
pkt.data = NULL;
pkt.stream_index = MAX_OMX_STREAMS;
result = m_dllAvFormat.av_read_frame(m_pFormatContext, &pkt);
if (result < 0)
{
m_eof = true;
//FlushRead();
//m_dllAvCodec.av_free_packet(&pkt);
UnLock();
return NULL;
}
else if (pkt.size < 0 || pkt.stream_index >= MAX_OMX_STREAMS)
{
// XXX, in some cases ffmpeg returns a negative packet size
if(m_pFormatContext->pb && !m_pFormatContext->pb->eof_reached)
{
CLog::Log(LOGERROR, "OMXReader::Read no valid packet");
//FlushRead();
}
m_dllAvCodec.av_free_packet(&pkt);
m_eof = true;
UnLock();
return NULL;
}
AVStream *pStream = m_pFormatContext->streams[pkt.stream_index];
/* only read packets for active streams */
/*
if(!IsActive(pkt.stream_index))
{
m_dllAvCodec.av_free_packet(&pkt);
UnLock();
return NULL;
}
*/
// lavf sometimes bugs out and gives 0 dts/pts instead of no dts/pts
// since this could only happens on initial frame under normal
// circomstances, let's assume it is wrong all the time
if(pkt.dts == 0)
pkt.dts = AV_NOPTS_VALUE;
if(pkt.pts == 0)
pkt.pts = AV_NOPTS_VALUE;
if(m_bMatroska && pStream->codec && pStream->codec->codec_type == AVMEDIA_TYPE_VIDEO)
{ // matroska can store different timestamps
// for different formats, for native stored
// stuff it is pts, but for ms compatibility
// tracks, it is really dts. sadly ffmpeg
// sets these two timestamps equal all the
// time, so we select it here instead
if(pStream->codec->codec_tag == 0)
pkt.dts = AV_NOPTS_VALUE;
else
pkt.pts = AV_NOPTS_VALUE;
}
// we need to get duration slightly different for matroska embedded text subtitels
if(m_bMatroska && pStream->codec->codec_id == AV_CODEC_ID_SUBRIP && pkt.convergence_duration != 0)
pkt.duration = pkt.convergence_duration;
if(m_bAVI && pStream->codec && pStream->codec->codec_type == AVMEDIA_TYPE_VIDEO)
{
// AVI's always have borked pts, specially if m_pFormatContext->flags includes
// AVFMT_FLAG_GENPTS so always use dts
pkt.pts = AV_NOPTS_VALUE;
}
m_omx_pkt = AllocPacket(pkt.size);
/* oom error allocation av packet */
if(!m_omx_pkt)
{
m_eof = true;
m_dllAvCodec.av_free_packet(&pkt);
UnLock();
return NULL;
}
m_omx_pkt->codec_type = pStream->codec->codec_type;
/* copy content into our own packet */
m_omx_pkt->size = pkt.size;
if (pkt.data)
memcpy(m_omx_pkt->data, pkt.data, m_omx_pkt->size);
m_omx_pkt->stream_index = pkt.stream_index;
GetHints(pStream, &m_omx_pkt->hints);
//m_omx_pkt->dts = ConvertTimestamp(pkt.dts, pStream->time_base.den, pStream->time_base.num);
//m_omx_pkt->pts = ConvertTimestamp(pkt.pts, pStream->time_base.den, pStream->time_base.num);
m_omx_pkt->dts = ConvertTimestamp(pkt.dts, &pStream->time_base);
m_omx_pkt->pts = ConvertTimestamp(pkt.pts, &pStream->time_base);
m_omx_pkt->duration = DVD_SEC_TO_TIME((double)pkt.duration * pStream->time_base.num / pStream->time_base.den);
// used to guess streamlength
if (m_omx_pkt->dts != DVD_NOPTS_VALUE && (m_omx_pkt->dts > m_iCurrentPts || m_iCurrentPts == DVD_NOPTS_VALUE))
m_iCurrentPts = m_omx_pkt->dts;
// check if stream has passed full duration, needed for live streams
if(pkt.dts != (int64_t)AV_NOPTS_VALUE)
{
int64_t duration;
duration = pkt.dts;
if(pStream->start_time != (int64_t)AV_NOPTS_VALUE)
duration -= pStream->start_time;
if(duration > pStream->duration)
{
pStream->duration = duration;
duration = m_dllAvUtil.av_rescale_rnd(pStream->duration, (int64_t)pStream->time_base.num * AV_TIME_BASE,
pStream->time_base.den, AV_ROUND_NEAR_INF);
if ((m_pFormatContext->duration == (int64_t)AV_NOPTS_VALUE)
|| (m_pFormatContext->duration != (int64_t)AV_NOPTS_VALUE && duration > m_pFormatContext->duration))
m_pFormatContext->duration = duration;
}
}
m_dllAvCodec.av_free_packet(&pkt);
UnLock();
return m_omx_pkt;
}
bool OMXReader::GetStreams()
{
if(!m_pFormatContext)
return false;
unsigned int m_program = UINT_MAX;
ClearStreams();
if (m_pFormatContext->nb_programs)
{
// look for first non empty stream and discard nonselected programs
for (unsigned int i = 0; i < m_pFormatContext->nb_programs; i++)
{
if(m_program == UINT_MAX && m_pFormatContext->programs[i]->nb_stream_indexes > 0)
m_program = i;
if(i != m_program)
m_pFormatContext->programs[i]->discard = AVDISCARD_ALL;
}
if(m_program != UINT_MAX)
{
// add streams from selected program
for (unsigned int i = 0; i < m_pFormatContext->programs[m_program]->nb_stream_indexes; i++)
AddStream(m_pFormatContext->programs[m_program]->stream_index[i]);
}
}
// if there were no programs or they were all empty, add all streams
if (m_program == UINT_MAX)
{
for (unsigned int i = 0; i < m_pFormatContext->nb_streams; i++)
AddStream(i);
}
if(m_video_count)
SetActiveStreamInternal(OMXSTREAM_VIDEO, 0);
if(m_audio_count)
SetActiveStreamInternal(OMXSTREAM_AUDIO, 0);
if(m_subtitle_count)
SetActiveStreamInternal(OMXSTREAM_SUBTITLE, 0);
int i = 0;
for(i = 0; i < MAX_OMX_CHAPTERS; i++)
{
m_chapters[i].name = "";
m_chapters[i].seekto_ms = 0;
m_chapters[i].ts = 0;
}
m_chapter_count = 0;
if(m_video_index != -1)
{
//m_current_chapter = 0;
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52,14,0)
m_chapter_count = (m_pFormatContext->nb_chapters > MAX_OMX_CHAPTERS) ? MAX_OMX_CHAPTERS : m_pFormatContext->nb_chapters;
for(i = 0; i < m_chapter_count; i++)
{
if(i > MAX_OMX_CHAPTERS)
break;
AVChapter *chapter = m_pFormatContext->chapters[i];
if(!chapter)
continue;
//m_chapters[i].seekto_ms = ConvertTimestamp(chapter->start, chapter->time_base.den, chapter->time_base.num) / 1000;
m_chapters[i].seekto_ms = ConvertTimestamp(chapter->start, &chapter->time_base) / 1000;
m_chapters[i].ts = m_chapters[i].seekto_ms / 1000;
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52,83,0)
AVDictionaryEntry *titleTag = m_dllAvUtil.av_dict_get(m_pFormatContext->chapters[i]->metadata,"title", NULL, 0);
if (titleTag)
m_chapters[i].name = titleTag->value;
#else
if(m_pFormatContext->chapters[i]->title)
m_chapters[i].name = m_pFormatContext->chapters[i]->title;
#endif
printf("Chapter : \t%d \t%s \t%8.2f\n", i, m_chapters[i].name.c_str(), m_chapters[i].ts);
}
}
#endif
return true;
}
void OMXReader::AddStream(int id)
{
if(id > MAX_STREAMS || !m_pFormatContext)
return;
AVStream *pStream = m_pFormatContext->streams[id];
// discard PNG stream as we don't support it, and it stops mp3 files playing with album art
if (pStream->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
(pStream->codec->codec_id == CODEC_ID_PNG))
return;
switch (pStream->codec->codec_type)
{
case AVMEDIA_TYPE_AUDIO:
m_streams[id].stream = pStream;
m_streams[id].type = OMXSTREAM_AUDIO;
m_streams[id].index = m_audio_count;
m_streams[id].codec_name = GetStreamCodecName(pStream);
m_streams[id].id = id;
m_audio_count++;
GetHints(pStream, &m_streams[id].hints);
break;
case AVMEDIA_TYPE_VIDEO:
m_streams[id].stream = pStream;
m_streams[id].type = OMXSTREAM_VIDEO;
m_streams[id].index = m_video_count;
m_streams[id].codec_name = GetStreamCodecName(pStream);
m_streams[id].id = id;
m_video_count++;
GetHints(pStream, &m_streams[id].hints);
break;
case AVMEDIA_TYPE_SUBTITLE:
m_streams[id].stream = pStream;
m_streams[id].type = OMXSTREAM_SUBTITLE;
m_streams[id].index = m_subtitle_count;
m_streams[id].codec_name = GetStreamCodecName(pStream);
m_streams[id].id = id;
m_subtitle_count++;
GetHints(pStream, &m_streams[id].hints);
break;
default:
return;
}
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52,83,0)
AVDictionaryEntry *langTag = m_dllAvUtil.av_dict_get(pStream->metadata, "language", NULL, 0);
if (langTag)
strncpy(m_streams[id].language, langTag->value, 3);
#else
strcpy( m_streams[id].language, pStream->language );
#endif
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52,83,0)
AVDictionaryEntry *titleTag = m_dllAvUtil.av_dict_get(pStream->metadata,"title", NULL, 0);
if (titleTag)
m_streams[id].name = titleTag->value;
#else
m_streams[id].name = pStream->title;
#endif
if( pStream->codec->extradata && pStream->codec->extradata_size > 0 )
{
m_streams[id].extrasize = pStream->codec->extradata_size;
m_streams[id].extradata = malloc(pStream->codec->extradata_size);
memcpy(m_streams[id].extradata, pStream->codec->extradata, pStream->codec->extradata_size);
}
}
bool OMXReader::SetActiveStreamInternal(OMXStreamType type, unsigned int index)
{
bool ret = false;
switch(type)
{
case OMXSTREAM_AUDIO:
if((int)index > (m_audio_count - 1))
index = (m_audio_count - 1);
break;
case OMXSTREAM_VIDEO:
if((int)index > (m_video_count - 1))
index = (m_video_count - 1);
break;
case OMXSTREAM_SUBTITLE:
if((int)index > (m_subtitle_count - 1))
index = (m_subtitle_count - 1);
break;
default:
break;
}
for(int i = 0; i < MAX_STREAMS; i++)
{
if(m_streams[i].type == type && m_streams[i].index == index)
{
switch(m_streams[i].type)
{
case OMXSTREAM_AUDIO:
m_audio_index = i;
ret = true;
break;
case OMXSTREAM_VIDEO:
m_video_index = i;
ret = true;
break;
case OMXSTREAM_SUBTITLE:
m_subtitle_index = i;
ret = true;
break;
default:
break;
}
}
}
if(!ret)
{
switch(type)
{
case OMXSTREAM_AUDIO:
m_audio_index = -1;
break;
case OMXSTREAM_VIDEO:
m_video_index = -1;
break;
case OMXSTREAM_SUBTITLE:
m_subtitle_index = -1;
break;
default:
break;
}
}
return ret;
}
bool OMXReader::IsActive(int stream_index)
{
if((m_audio_index != -1) && m_streams[m_audio_index].id == stream_index)
return true;
if((m_video_index != -1) && m_streams[m_video_index].id == stream_index)
return true;
if((m_subtitle_index != -1) && m_streams[m_subtitle_index].id == stream_index)
return true;
return false;
}
bool OMXReader::IsActive(OMXStreamType type, int stream_index)
{
if((m_audio_index != -1) && m_streams[m_audio_index].id == stream_index && m_streams[m_audio_index].type == type)
return true;
if((m_video_index != -1) && m_streams[m_video_index].id == stream_index && m_streams[m_video_index].type == type)
return true;
if((m_subtitle_index != -1) && m_streams[m_subtitle_index].id == stream_index && m_streams[m_subtitle_index].type == type)
return true;
return false;
}
bool OMXReader::GetHints(AVStream *stream, COMXStreamInfo *hints)
{
if(!hints || !stream)
return false;
hints->codec = stream->codec->codec_id;
hints->extradata = stream->codec->extradata;
hints->extrasize = stream->codec->extradata_size;
hints->channels = stream->codec->channels;
hints->samplerate = stream->codec->sample_rate;
hints->blockalign = stream->codec->block_align;
hints->bitrate = stream->codec->bit_rate;
hints->bitspersample = stream->codec->bits_per_coded_sample;
if(hints->bitspersample == 0)
hints->bitspersample = 16;
hints->width = stream->codec->width;
hints->height = stream->codec->height;
hints->profile = stream->codec->profile;
if(stream->codec->codec_type == AVMEDIA_TYPE_VIDEO)
{
hints->fpsrate = stream->r_frame_rate.num;
hints->fpsscale = stream->r_frame_rate.den;
if(m_bMatroska && stream->avg_frame_rate.den && stream->avg_frame_rate.num)
{
hints->fpsrate = stream->avg_frame_rate.num;
hints->fpsscale = stream->avg_frame_rate.den;
}
else if(stream->r_frame_rate.num && stream->r_frame_rate.den)
{
hints->fpsrate = stream->r_frame_rate.num;
hints->fpsscale = stream->r_frame_rate.den;
}
else
{
hints->fpsscale = 0;
hints->fpsrate = 0;
}
if (stream->sample_aspect_ratio.num != 0)
hints->aspect = av_q2d(stream->sample_aspect_ratio) * stream->codec->width / stream->codec->height;
else if (stream->codec->sample_aspect_ratio.num != 0)
hints->aspect = av_q2d(stream->codec->sample_aspect_ratio) * stream->codec->width / stream->codec->height;
else
hints->aspect = 0.0f;
if (m_bAVI && stream->codec->codec_id == CODEC_ID_H264)
hints->ptsinvalid = true;
}
return true;
}
bool OMXReader::GetHints(OMXStreamType type, unsigned int index, COMXStreamInfo &hints)
{
for(unsigned int i = 0; i < MAX_STREAMS; i++)
{
if(m_streams[i].type == type && m_streams[i].index == i)
{
hints = m_streams[i].hints;
return true;
}
}
return false;
}
bool OMXReader::GetHints(OMXStreamType type, COMXStreamInfo &hints)
{
bool ret = false;
switch (type)
{
case OMXSTREAM_AUDIO:
if(m_audio_index != -1)
{
ret = true;
hints = m_streams[m_audio_index].hints;
}
break;
case OMXSTREAM_VIDEO:
if(m_video_index != -1)
{
ret = true;
hints = m_streams[m_video_index].hints;
}
break;
case OMXSTREAM_SUBTITLE:
if(m_subtitle_index != -1)
{
ret = true;
hints = m_streams[m_subtitle_index].hints;
}
break;
default:
break;
}
return ret;
}
bool OMXReader::IsEof()
{
return m_eof;
}
void OMXReader::FreePacket(OMXPacket *pkt)
{
if(pkt)
{
if(pkt->data)
free(pkt->data);
free(pkt);
}
}
OMXPacket *OMXReader::AllocPacket(int size)
{
OMXPacket *pkt = (OMXPacket *)malloc(sizeof(OMXPacket));
if(pkt)
{
memset(pkt, 0, sizeof(OMXPacket));
pkt->data = (uint8_t*) malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
if(!pkt->data)
{
free(pkt);
pkt = NULL;
}
else
{
memset(pkt->data + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
pkt->size = size;
pkt->dts = DVD_NOPTS_VALUE;
pkt->pts = DVD_NOPTS_VALUE;
pkt->now = DVD_NOPTS_VALUE;
pkt->duration = DVD_NOPTS_VALUE;
}
}
return pkt;
}
bool OMXReader::SetActiveStream(OMXStreamType type, unsigned int index)
{
bool ret = false;
Lock();
ret = SetActiveStreamInternal(type, index);
UnLock();
return ret;
}
bool OMXReader::SeekChapter(int chapter, double* startpts)
{
if(chapter < 1)
chapter = 1;
if(m_pFormatContext == NULL)
return false;
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52,14,0)
if(chapter < 1 || chapter > (int)m_pFormatContext->nb_chapters)
return false;
AVChapter *ch = m_pFormatContext->chapters[chapter-1];
//double dts = ConvertTimestamp(ch->start, ch->time_base.den, ch->time_base.num);
double dts = ConvertTimestamp(ch->start, &ch->time_base);
return SeekTime(DVD_TIME_TO_MSEC(dts), 0, startpts);
#else
return false;
#endif
}
double OMXReader::ConvertTimestamp(int64_t pts, int den, int num)
{
if(m_pFormatContext == NULL)
return false;
if (pts == (int64_t)AV_NOPTS_VALUE)
return DVD_NOPTS_VALUE;
// do calculations in floats as they can easily overflow otherwise
// we don't care for having a completly exact timestamp anyway
double timestamp = (double)pts * num / den;
double starttime = 0.0f;
if (m_pFormatContext->start_time != (int64_t)AV_NOPTS_VALUE)
starttime = (double)m_pFormatContext->start_time / AV_TIME_BASE;