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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
|
/*
* Copyright (C) 2013 Team XBMC
* http://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
*
*/
// http://developer.android.com/reference/android/media/MediaCodec.html
//
// Android MediaCodec class can be used to access low-level media codec,
// i.e. encoder/decoder components. (android.media.MediaCodec). Requires
// SDK16+ which is 4.1 Jellybean and above.
//
#include "DVDVideoCodecAndroidMediaCodec.h"
#include "Application.h"
#include "ApplicationMessenger.h"
#include "DVDClock.h"
#include "threads/Atomics.h"
#include "utils/BitstreamConverter.h"
#include "utils/CPUInfo.h"
#include "utils/log.h"
#include "settings/AdvancedSettings.h"
#include "android/jni/ByteBuffer.h"
#include "android/jni/MediaCodec.h"
#include "android/jni/MediaCrypto.h"
#include "android/jni/MediaFormat.h"
#include "android/jni/MediaCodecList.h"
#include "android/jni/MediaCodecInfo.h"
#include "android/jni/Surface.h"
#include "android/jni/SurfaceTexture.h"
#include "android/activity/AndroidFeatures.h"
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <cassert>
static bool CanSurfaceRenderBlackList(const std::string &name)
{
// All devices 'should' be capiable of surface rendering
// but that seems to be hit or miss as most odd name devices
// cannot surface render.
static const char *cannotsurfacerender_decoders[] = {
NULL
};
for (const char **ptr = cannotsurfacerender_decoders; *ptr; ptr++)
{
if (!strnicmp(*ptr, name.c_str(), strlen(*ptr)))
return true;
}
return false;
}
static bool IsBlacklisted(const std::string &name)
{
static const char *blacklisted_decoders[] = {
// No software decoders
"OMX.google",
// For Rockchip non-standard components
"AVCDecoder",
"AVCDecoder_FLASH",
"FLVDecoder",
"M2VDecoder",
"M4vH263Decoder",
"RVDecoder",
"VC1Decoder",
"VPXDecoder",
// End of Rockchip
NULL
};
for (const char **ptr = blacklisted_decoders; *ptr; ptr++)
{
if (!strnicmp(*ptr, name.c_str(), strlen(*ptr)))
return true;
}
return false;
}
static bool IsSupportedColorFormat(int color_format)
{
static const int supported_colorformats[] = {
CJNIMediaCodecInfoCodecCapabilities::COLOR_FormatYUV420Planar,
CJNIMediaCodecInfoCodecCapabilities::COLOR_TI_FormatYUV420PackedSemiPlanar,
CJNIMediaCodecInfoCodecCapabilities::COLOR_FormatYUV420SemiPlanar,
CJNIMediaCodecInfoCodecCapabilities::COLOR_QCOM_FormatYUV420SemiPlanar,
CJNIMediaCodecInfoCodecCapabilities::OMX_QCOM_COLOR_FormatYVU420SemiPlanarInterlace,
-1
};
for (const int *ptr = supported_colorformats; *ptr != -1; ptr++)
{
if (color_format == *ptr)
return true;
}
return false;
}
/*****************************************************************************/
/*****************************************************************************/
class CNULL_Listener : public CJNISurfaceTextureOnFrameAvailableListener
{
public:
CNULL_Listener() : CJNISurfaceTextureOnFrameAvailableListener(jni::jhobject(NULL)) {};
protected:
virtual void OnFrameAvailable(CJNISurfaceTexture &surface) {};
};
class CDVDMediaCodecOnFrameAvailable : public CEvent, CJNISurfaceTextureOnFrameAvailableListener
{
public:
CDVDMediaCodecOnFrameAvailable(std::shared_ptr<CJNISurfaceTexture> &surfaceTexture)
: m_surfaceTexture(surfaceTexture)
{
m_surfaceTexture->setOnFrameAvailableListener(*this);
}
virtual ~CDVDMediaCodecOnFrameAvailable()
{
// unhook the callback
CNULL_Listener null_listener;
m_surfaceTexture->setOnFrameAvailableListener(null_listener);
}
protected:
virtual void OnFrameAvailable(CJNISurfaceTexture &surface)
{
Set();
}
private:
std::shared_ptr<CJNISurfaceTexture> m_surfaceTexture;
};
/*****************************************************************************/
/*****************************************************************************/
CDVDMediaCodecInfo::CDVDMediaCodecInfo(
int index
, unsigned int texture
, std::shared_ptr<CJNIMediaCodec> &codec
, std::shared_ptr<CJNISurfaceTexture> &surfacetexture
, std::shared_ptr<CDVDMediaCodecOnFrameAvailable> &frameready
)
: m_refs(1)
, m_valid(true)
, m_isReleased(true)
, m_index(index)
, m_texture(texture)
, m_timestamp(0)
, m_codec(codec)
, m_surfacetexture(surfacetexture)
, m_frameready(frameready)
{
// paranoid checks
assert(m_index >= 0);
assert(m_texture > 0);
assert(m_codec != NULL);
assert(m_surfacetexture != NULL);
assert(m_frameready != NULL);
}
CDVDMediaCodecInfo::~CDVDMediaCodecInfo()
{
assert(m_refs == 0);
}
CDVDMediaCodecInfo* CDVDMediaCodecInfo::Retain()
{
AtomicIncrement(&m_refs);
m_isReleased = false;
return this;
}
long CDVDMediaCodecInfo::Release()
{
long count = AtomicDecrement(&m_refs);
if (count == 1)
ReleaseOutputBuffer(false);
if (count == 0)
delete this;
return count;
}
void CDVDMediaCodecInfo::Validate(bool state)
{
CSingleLock lock(m_section);
m_valid = state;
}
void CDVDMediaCodecInfo::ReleaseOutputBuffer(bool render)
{
CSingleLock lock(m_section);
if (!m_valid || m_isReleased)
return;
// release OutputBuffer and render if indicated
// then wait for rendered frame to become avaliable.
if (render)
m_frameready->Reset();
m_codec->releaseOutputBuffer(m_index, render);
m_isReleased = true;
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDMediaCodecInfo::ReleaseOutputBuffer "
"ExceptionCheck render(%d)", render);
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
}
int CDVDMediaCodecInfo::GetIndex() const
{
CSingleLock lock(m_section);
return m_index;
}
int CDVDMediaCodecInfo::GetTextureID() const
{
// since m_texture never changes,
// we do not need a m_section lock here.
return m_texture;
}
void CDVDMediaCodecInfo::GetTransformMatrix(float *textureMatrix)
{
CSingleLock lock(m_section);
if (!m_valid)
return;
m_surfacetexture->getTransformMatrix(textureMatrix);
}
void CDVDMediaCodecInfo::UpdateTexImage()
{
CSingleLock lock(m_section);
if (!m_valid)
return;
// updateTexImage will check and spew any prior gl errors,
// clear them before we call updateTexImage.
glGetError();
// this is key, after calling releaseOutputBuffer, we must
// wait a little for MediaCodec to render to the surface.
// Then we can updateTexImage without delay. If we do not
// wait, then video playback gets jerky. To optomize this,
// we hook the SurfaceTexture OnFrameAvailable callback
// using CJNISurfaceTextureOnFrameAvailableListener and wait
// on a CEvent to fire. 50ms seems to be a good max fallback.
m_frameready->WaitMSec(50);
m_surfacetexture->updateTexImage();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDMediaCodecInfo::UpdateTexImage updateTexImage:ExceptionCheck");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
m_timestamp = m_surfacetexture->getTimestamp();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDMediaCodecInfo::UpdateTexImage getTimestamp:ExceptionCheck");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
}
/*****************************************************************************/
/*****************************************************************************/
CDVDVideoCodecAndroidMediaCodec::CDVDVideoCodecAndroidMediaCodec()
: m_formatname("mediacodec")
, m_opened(false)
, m_surface(NULL)
, m_textureId(0)
, m_bitstream(NULL)
, m_render_sw(false)
{
memset(&m_videobuffer, 0x00, sizeof(DVDVideoPicture));
memset(&m_demux_pkt, 0, sizeof(m_demux_pkt));
}
CDVDVideoCodecAndroidMediaCodec::~CDVDVideoCodecAndroidMediaCodec()
{
Dispose();
}
bool CDVDVideoCodecAndroidMediaCodec::Open(CDVDStreamInfo &hints, CDVDCodecOptions &options)
{
// mediacodec crashes with null size. Trap this...
if (!hints.width || !hints.height)
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Open - %s\n", "null size, cannot handle");
return false;
}
m_drop = false;
m_hints = hints;
switch(m_hints.codec)
{
case AV_CODEC_ID_MPEG2VIDEO:
m_mime = "video/mpeg2";
m_formatname = "amc-mpeg2";
break;
case AV_CODEC_ID_MPEG4:
m_mime = "video/mp4v-es";
m_formatname = "amc-mpeg4";
break;
case AV_CODEC_ID_H263:
m_mime = "video/3gpp";
m_formatname = "amc-h263";
break;
case AV_CODEC_ID_VP3:
case AV_CODEC_ID_VP6:
case AV_CODEC_ID_VP6F:
case AV_CODEC_ID_VP8:
//m_mime = "video/x-vp6";
//m_mime = "video/x-vp7";
m_mime = "video/x-vnd.on2.vp8";
m_formatname = "amc-vpX";
break;
case AV_CODEC_ID_AVS:
case AV_CODEC_ID_CAVS:
case AV_CODEC_ID_H264:
m_mime = "video/avc";
m_formatname = "amc-h264";
// check for h264-avcC and convert to h264-annex-b
if (m_hints.extradata && *(uint8_t*)m_hints.extradata == 1)
{
m_bitstream = new CBitstreamConverter;
if (!m_bitstream->Open(m_hints.codec, (uint8_t*)m_hints.extradata, m_hints.extrasize, true))
{
SAFE_DELETE(m_bitstream);
return false;
}
}
break;
case AV_CODEC_ID_HEVC:
m_mime = "video/hevc";
m_formatname = "amc-h265";
// check for hevc-hvcC and convert to h265-annex-b
if (m_hints.extradata && *(uint8_t*)m_hints.extradata == 1)
{
m_bitstream = new CBitstreamConverter;
if (!m_bitstream->Open(m_hints.codec, (uint8_t*)m_hints.extradata, m_hints.extrasize, true))
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Open CBitstreamConverter Open failed");
SAFE_DELETE(m_bitstream);
return false;
}
}
break;
case AV_CODEC_ID_VC1:
case AV_CODEC_ID_WMV3:
m_mime = "video/wvc1";
//m_mime = "video/wmv9";
m_formatname = "amc-vc1";
break;
default:
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: Unknown hints.codec(%d)", hints.codec);
return false;
break;
}
// CJNIMediaCodec::createDecoderByXXX doesn't handle errors nicely,
// it crashes if the codec isn't found. This is fixed in latest AOSP,
// but not in current 4.1 devices. So 1st search for a matching codec, then create it.
m_colorFormat = -1;
int num_codecs = CJNIMediaCodecList::getCodecCount();
for (int i = 0; i < num_codecs; i++)
{
CJNIMediaCodecInfo codec_info = CJNIMediaCodecList::getCodecInfoAt(i);
if (codec_info.isEncoder())
continue;
m_codecname = codec_info.getName();
if (IsBlacklisted(m_codecname))
continue;
CJNIMediaCodecInfoCodecCapabilities codec_caps = codec_info.getCapabilitiesForType(m_mime);
if (xbmc_jnienv()->ExceptionCheck())
{
// Unsupported type?
xbmc_jnienv()->ExceptionClear();
continue;
}
std::vector<int> color_formats = codec_caps.colorFormats();
std::vector<std::string> types = codec_info.getSupportedTypes();
// return the 1st one we find, that one is typically 'the best'
for (size_t j = 0; j < types.size(); ++j)
{
if (types[j] == m_mime)
{
m_codec = std::shared_ptr<CJNIMediaCodec>(new CJNIMediaCodec(CJNIMediaCodec::createByCodecName(m_codecname)));
// clear any jni exceptions, jni gets upset if we do not.
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Open ExceptionCheck");
xbmc_jnienv()->ExceptionClear();
m_codec.reset();
continue;
}
for (size_t k = 0; k < color_formats.size(); ++k)
{
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec::Open "
"m_codecname(%s), colorFormat(%d)", m_codecname.c_str(), color_formats[k]);
if (IsSupportedColorFormat(color_formats[k]))
m_colorFormat = color_formats[k]; // Save color format for initial output configuration
}
break;
}
}
if (m_codec)
break;
}
if (!m_codec)
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec:: Failed to create Android MediaCodec");
SAFE_DELETE(m_bitstream);
return false;
}
// blacklist of devices that cannot surface render.
m_render_sw = CanSurfaceRenderBlackList(m_codecname) || g_advancedSettings.m_mediacodecForceSoftwareRendring;
if (m_render_sw)
{
if (m_colorFormat == -1)
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec:: No supported color format");
m_codec.reset();
SAFE_DELETE(m_bitstream);
return false;
}
}
// setup a YUV420P DVDVideoPicture buffer.
// first make sure all properties are reset.
memset(&m_videobuffer, 0x00, sizeof(DVDVideoPicture));
m_videobuffer.dts = DVD_NOPTS_VALUE;
m_videobuffer.pts = DVD_NOPTS_VALUE;
m_videobuffer.color_range = 0;
m_videobuffer.color_matrix = 4;
m_videobuffer.iFlags = DVP_FLAG_ALLOCATED;
m_videobuffer.iWidth = m_hints.width;
m_videobuffer.iHeight = m_hints.height;
// these will get reset to crop values later
m_videobuffer.iDisplayWidth = m_hints.width;
m_videobuffer.iDisplayHeight = m_hints.height;
if (!ConfigureMediaCodec())
{
m_codec.reset();
SAFE_DELETE(m_bitstream);
return false;
}
CLog::Log(LOGINFO, "CDVDVideoCodecAndroidMediaCodec:: "
"Open Android MediaCodec %s", m_codecname.c_str());
m_opened = true;
memset(&m_demux_pkt, 0, sizeof(m_demux_pkt));
return m_opened;
}
void CDVDVideoCodecAndroidMediaCodec::Dispose()
{
m_opened = false;
// release any retained demux packets
if (m_demux_pkt.pData)
free(m_demux_pkt.pData);
// invalidate any inflight outputbuffers, make sure
// m_output is empty so we do not create new ones
m_input.clear();
m_output.clear();
FlushInternal();
// clear m_videobuffer bits
if (m_render_sw)
{
free(m_videobuffer.data[0]), m_videobuffer.data[0] = NULL;
free(m_videobuffer.data[1]), m_videobuffer.data[1] = NULL;
free(m_videobuffer.data[2]), m_videobuffer.data[2] = NULL;
}
m_videobuffer.iFlags = 0;
// m_videobuffer.mediacodec is unioned with m_videobuffer.data[0]
// so be very careful when and how you touch it.
m_videobuffer.mediacodec = NULL;
if (m_codec)
{
m_codec->stop();
m_codec->release();
m_codec.reset();
}
ReleaseSurfaceTexture();
SAFE_DELETE(m_bitstream);
}
int CDVDVideoCodecAndroidMediaCodec::Decode(uint8_t *pData, int iSize, double dts, double pts)
{
// Handle input, add demuxer packet to input queue, we must accept it or
// it will be discarded as DVDPlayerVideo has no concept of "try again".
// we must return VC_BUFFER or VC_PICTURE, default to VC_BUFFER.
int rtn = VC_BUFFER;
if (!m_opened)
return VC_ERROR;
if (m_hints.ptsinvalid)
pts = DVD_NOPTS_VALUE;
// must check for an output picture 1st,
// otherwise, mediacodec can stall on some devices.
if (GetOutputPicture() > 0)
rtn |= VC_PICTURE;
if (!pData)
{
// Check if we have a saved buffer
if (m_demux_pkt.pData)
{
pData = m_demux_pkt.pData;
iSize = m_demux_pkt.iSize;
pts = m_demux_pkt.pts;
dts = m_demux_pkt.dts;
}
}
if (pData)
{
// try to fetch an input buffer
int64_t timeout_us = 5000;
int index = m_codec->dequeueInputBuffer(timeout_us);
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Decode ExceptionCheck");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
rtn = VC_ERROR;
}
else if (index >= 0)
{
// docs lie, getInputBuffers should be good after
// m_codec->start() but the internal refs are not
// setup until much later on some devices.
if (m_input.empty())
{
m_input = m_codec->getInputBuffers();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDMediaCodecInfo::getInputBuffers "
"ExceptionCheck");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
}
// we have an input buffer, fill it.
if (m_bitstream)
{
m_bitstream->Convert(pData, iSize);
iSize = m_bitstream->GetConvertSize();
pData = m_bitstream->GetConvertBuffer();
}
int size = m_input[index].capacity();
if (iSize > size)
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Decode, iSize(%d) > size(%d)", iSize, size);
iSize = size;
}
// fetch a pointer to the ByteBuffer backing store
void *dst_ptr = xbmc_jnienv()->GetDirectBufferAddress(m_input[index].get_raw());
if (dst_ptr)
memcpy(dst_ptr, pData, iSize);
// Translate from dvdplayer dts/pts to MediaCodec pts,
// pts WILL get re-ordered by MediaCodec if needed.
// Do not try to pass pts as a unioned double/int64_t,
// some android devices will diddle with presentationTimeUs
// and you will get NaN back and DVDPlayerVideo will barf.
int64_t presentationTimeUs = 0;
if (pts != DVD_NOPTS_VALUE)
presentationTimeUs = pts;
else if (dts != DVD_NOPTS_VALUE)
presentationTimeUs = dts;
/*
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: "
"pts(%f), ipts(%lld), iSize(%d), GetDataSize(%d), loop_cnt(%d)",
presentationTimeUs, pts_dtoi(presentationTimeUs), iSize, GetDataSize(), loop_cnt);
*/
int flags = 0;
int offset = 0;
m_codec->queueInputBuffer(index, offset, iSize, presentationTimeUs, flags);
// clear any jni exceptions, jni gets upset if we do not.
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Decode ExceptionCheck");
xbmc_jnienv()->ExceptionClear();
}
// Free saved buffer it there was one
if (m_demux_pkt.pData)
{
free(m_demux_pkt.pData);
memset(&m_demux_pkt, 0, sizeof(m_demux_pkt));
}
}
else
{
// We couldn't get an input buffer. Save the packet for next iteration, if it wasn't already
if (!m_demux_pkt.pData)
{
m_demux_pkt.dts = dts;
m_demux_pkt.pts = pts;
m_demux_pkt.iSize = iSize;
m_demux_pkt.pData = (uint8_t*)malloc(iSize);
memcpy(m_demux_pkt.pData, pData, iSize);
}
rtn &= ~VC_BUFFER;
}
}
return rtn;
}
void CDVDVideoCodecAndroidMediaCodec::Reset()
{
if (!m_opened)
return;
// dump any pending demux packets
if (m_demux_pkt.pData)
{
free(m_demux_pkt.pData);
memset(&m_demux_pkt, 0, sizeof(m_demux_pkt));
}
if (m_codec)
{
// flush all outputbuffers inflight, they will
// become invalid on m_codec->flush and generate
// a spew of java exceptions if used
FlushInternal();
// now we can flush the actual MediaCodec object
m_codec->flush();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::Reset ExceptionCheck");
xbmc_jnienv()->ExceptionClear();
}
// Invalidate our local DVDVideoPicture bits
m_videobuffer.pts = DVD_NOPTS_VALUE;
if (!m_render_sw)
m_videobuffer.mediacodec = NULL;
}
}
bool CDVDVideoCodecAndroidMediaCodec::GetPicture(DVDVideoPicture* pDvdVideoPicture)
{
if (!m_opened)
return false;
*pDvdVideoPicture = m_videobuffer;
// Invalidate our local DVDVideoPicture bits
m_videobuffer.pts = DVD_NOPTS_VALUE;
if (!m_render_sw)
m_videobuffer.mediacodec = NULL;
return true;
}
bool CDVDVideoCodecAndroidMediaCodec::ClearPicture(DVDVideoPicture* pDvdVideoPicture)
{
if (pDvdVideoPicture->format == RENDER_FMT_MEDIACODEC)
SAFE_RELEASE(pDvdVideoPicture->mediacodec);
memset(pDvdVideoPicture, 0x00, sizeof(DVDVideoPicture));
return true;
}
void CDVDVideoCodecAndroidMediaCodec::SetDropState(bool bDrop)
{
m_drop = bDrop;
if (m_drop)
m_videobuffer.iFlags |= DVP_FLAG_DROPPED;
else
m_videobuffer.iFlags &= ~DVP_FLAG_DROPPED;
}
int CDVDVideoCodecAndroidMediaCodec::GetDataSize(void)
{
// just ignore internal buffering contribution.
return 0;
}
double CDVDVideoCodecAndroidMediaCodec::GetTimeSize(void)
{
// just ignore internal buffering contribution.
return 0.0;
}
unsigned CDVDVideoCodecAndroidMediaCodec::GetAllowedReferences()
{
return 3;
}
void CDVDVideoCodecAndroidMediaCodec::FlushInternal()
{
// invalidate any existing inflight buffers and create
// new ones to match the number of output buffers
if (m_render_sw)
return;
for (size_t i = 0; i < m_inflight.size(); i++)
m_inflight[i]->Validate(false);
m_inflight.clear();
for (size_t i = 0; i < m_output.size(); i++)
{
m_inflight.push_back(
new CDVDMediaCodecInfo(i, m_textureId, m_codec, m_surfaceTexture, m_frameAvailable)
);
}
}
bool CDVDVideoCodecAndroidMediaCodec::ConfigureMediaCodec(void)
{
// setup a MediaFormat to match the video content,
// used by codec during configure
CJNIMediaFormat mediaformat = CJNIMediaFormat::createVideoFormat(
m_mime.c_str(), m_hints.width, m_hints.height);
// some android devices forget to default the demux input max size
mediaformat.setInteger(CJNIMediaFormat::KEY_MAX_INPUT_SIZE, 0);
// handle codec extradata
if (m_hints.extrasize)
{
size_t size = m_hints.extrasize;
void *src_ptr = m_hints.extradata;
if (m_bitstream)
{
size = m_bitstream->GetExtraSize();
src_ptr = m_bitstream->GetExtraData();
}
// Allocate a byte buffer via allocateDirect in java instead of NewDirectByteBuffer,
// since the latter doesn't allocate storage of its own, and we don't know how long
// the codec uses the buffer.
CJNIByteBuffer bytebuffer = CJNIByteBuffer::allocateDirect(size);
void *dts_ptr = xbmc_jnienv()->GetDirectBufferAddress(bytebuffer.get_raw());
memcpy(dts_ptr, src_ptr, size);
// codec will automatically handle buffers as extradata
// using entries with keys "csd-0", "csd-1", etc.
mediaformat.setByteBuffer("csd-0", bytebuffer);
}
InitSurfaceTexture();
// configure and start the codec.
// use the MediaFormat that we have setup.
// use a null MediaCrypto, our content is not encrypted.
// use a null Surface, we will extract the video picture data manually.
int flags = 0;
CJNIMediaCrypto crypto(jni::jhobject(NULL));
// our jni gets upset if we do this a different
// way, do not mess with it.
if (m_render_sw)
{
CJNISurface surface(jni::jhobject(NULL));
m_codec->configure(mediaformat, surface, crypto, flags);
}
else
{
m_codec->configure(mediaformat, *m_surface, crypto, flags);
}
// always, check/clear jni exceptions.
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::ExceptionCheck: configure");
xbmc_jnienv()->ExceptionClear();
return false;
}
m_codec->start();
// always, check/clear jni exceptions.
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::ExceptionCheck: start");
xbmc_jnienv()->ExceptionClear();
return false;
}
// There is no guarantee we'll get an INFO_OUTPUT_FORMAT_CHANGED (up to Android 4.3)
// Configure the output with defaults
ConfigureOutputFormat(&mediaformat);
return true;
}
int CDVDVideoCodecAndroidMediaCodec::GetOutputPicture(void)
{
int rtn = 0;
int64_t timeout_us = 1000;
CJNIMediaCodecBufferInfo bufferInfo;
int index = m_codec->dequeueOutputBuffer(bufferInfo, timeout_us);
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture ExceptionCheck; dequeueOutputBuffer");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
return 0;
}
if (index >= 0)
{
if (m_drop)
{
m_codec->releaseOutputBuffer(index, false);
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture ExceptionCheck: releaseOutputBuffer");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
return 0;
}
return 0;
}
// some devices will return a valid index
// before signaling INFO_OUTPUT_BUFFERS_CHANGED which
// is used to setup m_output, D'uh. setup m_output here.
if (m_output.empty())
{
m_output = m_codec->getOutputBuffers();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture ExceptionCheck: getOutputBuffers");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
return 0;
}
FlushInternal();
}
int flags = bufferInfo.flags();
if (flags & CJNIMediaCodec::BUFFER_FLAG_SYNC_FRAME)
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: BUFFER_FLAG_SYNC_FRAME");
if (flags & CJNIMediaCodec::BUFFER_FLAG_CODEC_CONFIG)
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: BUFFER_FLAG_CODEC_CONFIG");
if (flags & CJNIMediaCodec::BUFFER_FLAG_END_OF_STREAM)
{
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: BUFFER_FLAG_END_OF_STREAM");
m_codec->releaseOutputBuffer(index, false);
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture ExceptionCheck: releaseOutputBuffer");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
return 0;
}
return 0;
}
if (!m_render_sw)
{
m_videobuffer.mediacodec = m_inflight[index]->Retain();
m_videobuffer.mediacodec->Validate(true);
}
else
{
int size = bufferInfo.size();
int offset = bufferInfo.offset();
if (!m_output[index].isDirect())
CLog::Log(LOGWARNING, "CDVDVideoCodecAndroidMediaCodec:: m_output[index].isDirect == false");
if (size && m_output[index].capacity())
{
uint8_t *src_ptr = (uint8_t*)xbmc_jnienv()->GetDirectBufferAddress(m_output[index].get_raw());
src_ptr += offset;
int loop_end = 0;
if (m_videobuffer.format == RENDER_FMT_NV12)
loop_end = 2;
else if (m_videobuffer.format == RENDER_FMT_YUV420P)
loop_end = 3;
for (int i = 0; i < loop_end; i++)
{
uint8_t *src = src_ptr + m_src_offset[i];
int src_stride = m_src_stride[i];
uint8_t *dst = m_videobuffer.data[i];
int dst_stride = m_videobuffer.iLineSize[i];
int height = m_videobuffer.iHeight;
if (i > 0)
height = (m_videobuffer.iHeight + 1) / 2;
if (src_stride == dst_stride)
memcpy(dst, src, dst_stride * height);
else
for (int j = 0; j < height; j++, src += src_stride, dst += dst_stride)
memcpy(dst, src, dst_stride);
}
}
m_codec->releaseOutputBuffer(index, false);
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture ExceptionCheck: releaseOutputBuffer");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
}
int64_t pts= bufferInfo.presentationTimeUs();
m_videobuffer.dts = DVD_NOPTS_VALUE;
m_videobuffer.pts = DVD_NOPTS_VALUE;
if (pts != AV_NOPTS_VALUE)
m_videobuffer.pts = pts;
/*
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture "
"index(%d), pts(%f)", index, m_videobuffer.pts);
*/
// always, check/clear jni exceptions.
if (xbmc_jnienv()->ExceptionCheck())
xbmc_jnienv()->ExceptionClear();
rtn = 1;
}
else if (index == CJNIMediaCodec::INFO_OUTPUT_BUFFERS_CHANGED)
{
m_output = m_codec->getOutputBuffers();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture(INFO_OUTPUT_BUFFERS_CHANGED) ExceptionCheck: getOutputBuffers");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
FlushInternal();
}
else if (index == CJNIMediaCodec::INFO_OUTPUT_FORMAT_CHANGED)
{
CJNIMediaFormat mediaformat = m_codec->getOutputFormat();
if (xbmc_jnienv()->ExceptionCheck())
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture(INFO_OUTPUT_FORMAT_CHANGED) ExceptionCheck: getOutputBuffers");
xbmc_jnienv()->ExceptionDescribe();
xbmc_jnienv()->ExceptionClear();
}
ConfigureOutputFormat(&mediaformat);
}
else if (index == CJNIMediaCodec::INFO_TRY_AGAIN_LATER)
{
// normal dequeueOutputBuffer timeout, ignore it.
rtn = -1;
}
else
{
// we should never get here
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec::GetOutputPicture unknown index(%d)", index);
}
return rtn;
}
void CDVDVideoCodecAndroidMediaCodec::ConfigureOutputFormat(CJNIMediaFormat* mediaformat)
{
int width = 0;
int height = 0;
int stride = 0;
int slice_height= 0;
int color_format= 0;
int crop_left = 0;
int crop_top = 0;
int crop_right = 0;
int crop_bottom = 0;
if (mediaformat->containsKey("width"))
width = mediaformat->getInteger("width");
if (mediaformat->containsKey("height"))
height = mediaformat->getInteger("height");
if (mediaformat->containsKey("stride"))
stride = mediaformat->getInteger("stride");
if (mediaformat->containsKey("slice-height"))
slice_height= mediaformat->getInteger("slice-height");
if (mediaformat->containsKey("color-format"))
color_format= mediaformat->getInteger("color-format");
if (mediaformat->containsKey("crop-left"))
crop_left = mediaformat->getInteger("crop-left");
if (mediaformat->containsKey("crop-top"))
crop_top = mediaformat->getInteger("crop-top");
if (mediaformat->containsKey("crop-right"))
crop_right = mediaformat->getInteger("crop-right");
if (mediaformat->containsKey("crop-bottom"))
crop_bottom = mediaformat->getInteger("crop-bottom");
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: "
"width(%d), height(%d), stride(%d), slice-height(%d), color-format(%d)",
width, height, stride, slice_height, color_format);
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: "
"crop-left(%d), crop-top(%d), crop-right(%d), crop-bottom(%d)",
crop_left, crop_top, crop_right, crop_bottom);
if (!m_render_sw)
{
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: Direct Surface Rendering");
m_videobuffer.format = RENDER_FMT_MEDIACODEC;
}
else
{
// Android device quirks and fixes
// Samsung Quirk: ignore width/height/stride/slice: http://code.google.com/p/android/issues/detail?id=37768#c3
if (strstr(m_codecname.c_str(), "OMX.SEC.avc.dec") != NULL || strstr(m_codecname.c_str(), "OMX.SEC.avcdec") != NULL)
{
width = stride = m_hints.width;
height = slice_height = m_hints.height;
}
// No color-format? Initialize with the one we detected as valid earlier
if (color_format == 0)
color_format = m_colorFormat;
if (stride <= width)
stride = width;
if (!crop_right)
crop_right = width-1;
if (!crop_bottom)
crop_bottom = height-1;
if (slice_height <= height)
{
slice_height = height;
if (color_format == CJNIMediaCodecInfoCodecCapabilities::COLOR_FormatYUV420Planar)
{
// NVidia Tegra 3 on Nexus 7 does not set slice_heights
if (strstr(m_codecname.c_str(), "OMX.Nvidia.") != NULL)
{
slice_height = (((height) + 15) & ~15);
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: NVidia Tegra 3 quirk, slice_height(%d)", slice_height);
}
}
}
if (color_format == CJNIMediaCodecInfoCodecCapabilities::COLOR_TI_FormatYUV420PackedSemiPlanar)
{
slice_height -= crop_top / 2;
// set crop top/left here, since the offset parameter already includes this.
// if we would ignore the offset parameter in the BufferInfo, we could just keep
// the original slice height and apply the top/left cropping instead.
crop_top = 0;
crop_left = 0;
}
// default picture format to none
for (int i = 0; i < 4; i++)
m_src_offset[i] = m_src_stride[i] = 0;
// delete any existing buffers
for (int i = 0; i < 4; i++)
free(m_videobuffer.data[i]);
// setup picture format and data offset vectors
if (color_format == CJNIMediaCodecInfoCodecCapabilities::COLOR_FormatYUV420Planar)
{
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: COLOR_FormatYUV420Planar");
// Y plane
m_src_stride[0] = stride;
m_src_offset[0] = crop_top * stride;
m_src_offset[0]+= crop_left;
// U plane
m_src_stride[1] = (stride + 1) / 2;
// skip over the Y plane
m_src_offset[1] = slice_height * stride;
// crop_top/crop_left divided by two
// because one byte of the U/V planes
// corresponds to two pixels horizontally/vertically
m_src_offset[1]+= crop_top / 2 * m_src_stride[1];
m_src_offset[1]+= crop_left / 2;
// V plane
m_src_stride[2] = (stride + 1) / 2;
// skip over the Y plane
m_src_offset[2] = slice_height * stride;
// skip over the U plane
m_src_offset[2]+= ((slice_height + 1) / 2) * ((stride + 1) / 2);
// crop_top/crop_left divided by two
// because one byte of the U/V planes
// corresponds to two pixels horizontally/vertically
m_src_offset[2]+= crop_top / 2 * m_src_stride[2];
m_src_offset[2]+= crop_left / 2;
m_videobuffer.iLineSize[0] = width; // Y
m_videobuffer.iLineSize[1] = (width + 1) /2; // U
m_videobuffer.iLineSize[2] = (width + 1) /2; // V
m_videobuffer.iLineSize[3] = 0;
unsigned int iPixels = width * height;
unsigned int iChromaPixels = iPixels/4;
m_videobuffer.data[0] = (uint8_t*)malloc(16 + iPixels);
m_videobuffer.data[1] = (uint8_t*)malloc(16 + iChromaPixels);
m_videobuffer.data[2] = (uint8_t*)malloc(16 + iChromaPixels);
m_videobuffer.data[3] = NULL;
m_videobuffer.format = RENDER_FMT_YUV420P;
}
else if (color_format == CJNIMediaCodecInfoCodecCapabilities::COLOR_FormatYUV420SemiPlanar
|| color_format == CJNIMediaCodecInfoCodecCapabilities::COLOR_QCOM_FormatYUV420SemiPlanar
|| color_format == CJNIMediaCodecInfoCodecCapabilities::COLOR_TI_FormatYUV420PackedSemiPlanar
|| color_format == CJNIMediaCodecInfoCodecCapabilities::OMX_QCOM_COLOR_FormatYVU420SemiPlanarInterlace)
{
CLog::Log(LOGDEBUG, "CDVDVideoCodecAndroidMediaCodec:: COLOR_FormatYUV420SemiPlanar");
// Y plane
m_src_stride[0] = stride;
m_src_offset[0] = crop_top * stride;
m_src_offset[0]+= crop_left;
// UV plane
m_src_stride[1] = stride;
// skip over the Y plane
m_src_offset[1] = slice_height * stride;
m_src_offset[1]+= crop_top * stride;
m_src_offset[1]+= crop_left;
m_videobuffer.iLineSize[0] = width; // Y
m_videobuffer.iLineSize[1] = width; // UV
m_videobuffer.iLineSize[2] = 0;
m_videobuffer.iLineSize[3] = 0;
unsigned int iPixels = width * height;
unsigned int iChromaPixels = iPixels;
m_videobuffer.data[0] = (uint8_t*)malloc(16 + iPixels);
m_videobuffer.data[1] = (uint8_t*)malloc(16 + iChromaPixels);
m_videobuffer.data[2] = NULL;
m_videobuffer.data[3] = NULL;
m_videobuffer.format = RENDER_FMT_NV12;
}
else
{
CLog::Log(LOGERROR, "CDVDVideoCodecAndroidMediaCodec:: Fixme unknown color_format(%d)", color_format);
return;
}
}
if (width)
m_videobuffer.iWidth = width;
if (height)
m_videobuffer.iHeight = height;
// picture display width/height include the cropping.
m_videobuffer.iDisplayWidth = crop_right + 1 - crop_left;
m_videobuffer.iDisplayHeight = crop_bottom + 1 - crop_top;
if (m_hints.aspect > 1.0 && !m_hints.forced_aspect)
{
m_videobuffer.iDisplayWidth = ((int)lrint(m_videobuffer.iHeight * m_hints.aspect)) & -3;
if (m_videobuffer.iDisplayWidth > m_videobuffer.iWidth)
{
m_videobuffer.iDisplayWidth = m_videobuffer.iWidth;
m_videobuffer.iDisplayHeight = ((int)lrint(m_videobuffer.iWidth / m_hints.aspect)) & -3;
}
}
// clear any jni exceptions
if (xbmc_jnienv()->ExceptionCheck())
xbmc_jnienv()->ExceptionClear();
}
void CDVDVideoCodecAndroidMediaCodec::CallbackInitSurfaceTexture(void *userdata)
{
CDVDVideoCodecAndroidMediaCodec *ctx = static_cast<CDVDVideoCodecAndroidMediaCodec*>(userdata);
ctx->InitSurfaceTexture();
}
void CDVDVideoCodecAndroidMediaCodec::InitSurfaceTexture(void)
{
if (m_render_sw)
return;
// We MUST create the GLES texture on the main thread
// to match where the valid GLES context is located.
// It would be nice to move this out of here, we would need
// to create/fetch/create from g_RenderMananger. But g_RenderMananger
// does not know we are using MediaCodec until Configure and we
// we need m_surfaceTexture valid before then. Chicken, meet Egg.
if (g_application.IsCurrentThread())
{
// localize GLuint so we do not spew gles includes in our header
GLuint texture_id;
glGenTextures(1, &texture_id);
glBindTexture( GL_TEXTURE_EXTERNAL_OES, texture_id);
glTexParameterf(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf(GL_TEXTURE_EXTERNAL_OES, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glBindTexture( GL_TEXTURE_EXTERNAL_OES, 0);
m_textureId = texture_id;
m_surfaceTexture = std::shared_ptr<CJNISurfaceTexture>(new CJNISurfaceTexture(m_textureId));
// hook the surfaceTexture OnFrameAvailable callback
m_frameAvailable = std::shared_ptr<CDVDMediaCodecOnFrameAvailable>(new CDVDMediaCodecOnFrameAvailable(m_surfaceTexture));
m_surface = new CJNISurface(*m_surfaceTexture);
}
else
{
ThreadMessageCallback callbackData;
callbackData.callback = &CallbackInitSurfaceTexture;
callbackData.userptr = (void*)this;
ThreadMessage msg;
msg.dwMessage = TMSG_CALLBACK;
msg.lpVoid = (void*)&callbackData;
// wait for it.
CApplicationMessenger::Get().SendMessage(msg, true);
}
return;
}
void CDVDVideoCodecAndroidMediaCodec::ReleaseSurfaceTexture(void)
{
if (m_render_sw)
return;
// it is safe to delete here even though these items
// were created in the main thread instance
SAFE_DELETE(m_surface);
m_frameAvailable.reset();
m_surfaceTexture.reset();
if (m_textureId > 0)
{
GLuint texture_id = m_textureId;
glDeleteTextures(1, &texture_id);
m_textureId = 0;
}
}
|