-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathffplay.c
4892 lines (4355 loc) · 165 KB
/
ffplay.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
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) 2003 Fabrice Bellard
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
* simple media player based on the FFmpeg libraries
*/
#ifdef _WIN32
#define DLL_EXPORT __declspec(dllexport)
#else
#define DLL_EXPORT
#endif
#define THREAD_LOCAL
#define THREAD_LOCAL_PARAM
#define THREAD_LOCAL_MUST __thread
#include <stdatomic.h>
#include "libavutil/thread.h"
#include <string.h>
#include "config.h"
#include "config_components.h"
#include <inttypes.h>
#include <math.h>
#include <limits.h>
#include <signal.h>
#include <stdint.h>
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/eval.h"
#include "libavutil/mathematics.h"
#include "libavutil/pixdesc.h"
#include "libavutil/imgutils.h"
#include "libavutil/dict.h"
#include "libavutil/fifo.h"
#include "libavutil/parseutils.h"
#include "libavutil/samplefmt.h"
#include "libavutil/time.h"
#include "libavutil/bprint.h"
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
#include "libavutil/opt.h"
#include "libavcodec/avfft.h"
#include "libswresample/swresample.h"
#if CONFIG_AVFILTER
# include "libavfilter/avfilter.h"
# include "libavfilter/buffersink.h"
# include "libavfilter/buffersrc.h"
#endif
#ifdef FFMPEG_KIT
#include <SDL2/SDL.h>
#include <SDL2/SDL_thread.h>
#include "fftools_cmdutils.h"
#include "fftools_opt_common.h"
#else
#include <SDL.h>
#include <SDL_thread.h>
#include "cmdutils.h"
#include "opt_common.h"
#endif
#ifdef __ANDROID__
extern void ffmpegkit_log_callback_function(void *ptr, int level, const char* format, va_list vargs);
extern int global_get_redirectionEnabled();
#endif
//const char program_name[] = "ffplay";
//const int program_birth_year = 2003;
#define MAX_QUEUE_SIZE (15 * 1024 * 1024)
#define MIN_FRAMES 25
#define EXTERNAL_CLOCK_MIN_FRAMES 2
#define EXTERNAL_CLOCK_MAX_FRAMES 10
/* Minimum SDL audio buffer size, in samples. */
#define SDL_AUDIO_MIN_BUFFER_SIZE 512
/* Calculate actual buffer size keeping in mind not cause too frequent audio callbacks */
#define SDL_AUDIO_MAX_CALLBACKS_PER_SEC 30
/* Step size for volume control in dB */
#define SDL_VOLUME_STEP (0.75)
/* no AV sync correction is done if below the minimum AV sync threshold */
#define AV_SYNC_THRESHOLD_MIN 0.04
/* AV sync correction is done if above the maximum AV sync threshold */
#define AV_SYNC_THRESHOLD_MAX 0.1
/* If a frame duration is longer than this, it will not be duplicated to compensate AV sync */
#define AV_SYNC_FRAMEDUP_THRESHOLD 0.1
/* no AV correction is done if too big error */
#define AV_NOSYNC_THRESHOLD 10.0
/* maximum audio speed change to get correct sync */
#define SAMPLE_CORRECTION_PERCENT_MAX 10
/* external clock speed adjustment constants for realtime sources based on buffer fullness */
#define EXTERNAL_CLOCK_SPEED_MIN 0.900
#define EXTERNAL_CLOCK_SPEED_MAX 1.010
#define EXTERNAL_CLOCK_SPEED_STEP 0.001
/* we use about AUDIO_DIFF_AVG_NB A-V differences to make the average */
#define AUDIO_DIFF_AVG_NB 20
/* polls for possible required screen refresh at least this often, should be less than 1/fps */
#define REFRESH_RATE 0.01
/* NOTE: the size must be big enough to compensate the hardware audio buffersize size */
/* TODO: We assume that a decoded and resampled frame fits into this buffer */
#define SAMPLE_ARRAY_SIZE (8 * 65536)
#define CURSOR_HIDE_DELAY 1000000
#define USE_ONEPASS_SUBTITLE_RENDER 1
static unsigned sws_flags = SWS_BICUBIC;
typedef struct MyAVPacketList {
AVPacket *pkt;
int serial;
} MyAVPacketList;
typedef struct PacketQueue {
AVFifo *pkt_list;
int nb_packets;
int size;
int64_t duration;
int abort_request;
int serial;
/*SDL_mutex * */ atomic_flag mutex;
/*SDL_cond * */ atomic_int cond;
} PacketQueue;
#define VIDEO_PICTURE_QUEUE_SIZE 3
#define SUBPICTURE_QUEUE_SIZE 16
#define SAMPLE_QUEUE_SIZE 9
#define FRAME_QUEUE_SIZE FFMAX(SAMPLE_QUEUE_SIZE, FFMAX(VIDEO_PICTURE_QUEUE_SIZE, SUBPICTURE_QUEUE_SIZE))
typedef struct AudioParams {
int freq;
AVChannelLayout ch_layout;
enum AVSampleFormat fmt;
int frame_size;
int bytes_per_sec;
} AudioParams;
typedef struct Clock {
double pts; /* clock base */
double pts_drift; /* clock base minus time at which we updated the clock */
double last_updated;
double speed;
int serial; /* clock is based on a packet with this serial */
int paused;
int *queue_serial; /* pointer to the current packet queue serial, used for obsolete clock detection */
} Clock;
/* Common struct for handling all types of decoded data and allocated render buffers. */
typedef struct Frame {
AVFrame *frame;
AVSubtitle sub;
int serial;
double pts; /* presentation timestamp for the frame */
double duration; /* estimated duration of the frame */
int64_t pos; /* byte position of the frame in the input file */
int width;
int height;
int format;
AVRational sar;
int uploaded;
int flip_v;
} Frame;
typedef struct FrameQueue {
Frame queue[FRAME_QUEUE_SIZE];
int rindex;
int windex;
int size;
int max_size;
int keep_last;
int rindex_shown;
/*SDL_mutex * */ atomic_flag mutex;
/*SDL_cond * */ atomic_int cond;
PacketQueue *pktq;
} FrameQueue;
enum {
AV_SYNC_AUDIO_MASTER, /* default choice */
AV_SYNC_VIDEO_MASTER,
AV_SYNC_EXTERNAL_CLOCK, /* synchronize to an external clock */
};
typedef struct Decoder {
AVPacket *pkt;
PacketQueue *queue;
AVCodecContext *avctx;
int pkt_serial;
int finished;
int packet_pending;
/*SDL_cond * */ atomic_int *empty_queue_cond;
int64_t start_pts;
AVRational start_pts_tb;
int64_t next_pts;
AVRational next_pts_tb;
int decoder_tid_is_running;
pthread_t decoder_tid;
} Decoder;
typedef struct VideoState {
int read_tid_is_running;
pthread_t read_tid;
const AVInputFormat *iformat;
int abort_request;
int force_refresh;
int paused;
int last_paused;
int queue_attachments_req;
int seek_req;
int seek_flags;
int64_t seek_pos;
int64_t seek_rel;
int read_pause_return;
AVFormatContext *ic;
int realtime;
Clock audclk;
Clock vidclk;
Clock extclk;
FrameQueue pictq;
FrameQueue subpq;
FrameQueue sampq;
Decoder auddec;
Decoder viddec;
Decoder subdec;
int audio_stream;
int av_sync_type;
double audio_clock;
int audio_clock_serial;
double audio_diff_cum; /* used for AV difference average computation */
double audio_diff_avg_coef;
double audio_diff_threshold;
int audio_diff_avg_count;
AVStream *audio_st;
PacketQueue audioq;
int audio_hw_buf_size;
uint8_t *audio_buf;
uint8_t *audio_buf1;
unsigned int audio_buf_size; /* in bytes */
unsigned int audio_buf1_size;
int audio_buf_index; /* in bytes */
int audio_write_buf_size;
int audio_volume;
int muted;
struct AudioParams audio_src;
#if CONFIG_AVFILTER
struct AudioParams audio_filter_src;
#endif
struct AudioParams audio_tgt;
struct SwrContext *swr_ctx;
int frame_drops_early;
int frame_drops_late;
enum ShowMode {
SHOW_MODE_NONE = -1, SHOW_MODE_VIDEO = 0, SHOW_MODE_WAVES, SHOW_MODE_RDFT, SHOW_MODE_NB
} show_mode;
int16_t sample_array[SAMPLE_ARRAY_SIZE];
int sample_array_index;
int last_i_start;
RDFTContext *rdft;
int rdft_bits;
FFTSample *rdft_data;
int xpos;
double last_vis_time;
//SDL_Texture *vis_texture;
//SDL_Texture *sub_texture;
//SDL_Texture *vid_texture;
atomic_flag vid_texture_lock;
int subtitle_stream;
AVStream *subtitle_st;
PacketQueue subtitleq;
double frame_timer;
double frame_last_returned_time;
double frame_last_filter_delay;
int video_stream;
AVStream *video_st;
PacketQueue videoq;
double max_frame_duration; // maximum duration of a frame - above this, we consider the jump a timestamp discontinuity
struct SwsContext *img_convert_ctx;
struct SwsContext *sub_convert_ctx;
int eof;
char *filename;
int width, height, xleft, ytop;
int step;
#if CONFIG_AVFILTER
int vfilter_idx;
AVFilterContext *in_video_filter; // the first filter in the video chain
AVFilterContext *out_video_filter; // the last filter in the video chain
AVFilterContext *in_audio_filter; // the first filter in the audio chain
AVFilterContext *out_audio_filter; // the last filter in the audio chain
AVFilterGraph *agraph; // audio filter graph
#endif
int last_video_stream, last_audio_stream, last_subtitle_stream;
/*SDL_cond * */ atomic_int continue_read_thread;
FILE *log_output_file_pointer;
int unity_id;
uint8_t *unity_data;
int frame_width, frame_height;
int seek_by_bytes;
int loop;
} VideoState;
/* options specified by the user */
static THREAD_LOCAL_PARAM const AVInputFormat *file_iformat;
static THREAD_LOCAL_PARAM const char *input_filename;
static THREAD_LOCAL_PARAM const char *window_title;
static THREAD_LOCAL_PARAM int default_width = 640;
static THREAD_LOCAL_PARAM int default_height = 480;
static THREAD_LOCAL_PARAM int screen_width = 0;
static THREAD_LOCAL_PARAM int screen_height = 0;
static THREAD_LOCAL_PARAM int screen_left = SDL_WINDOWPOS_CENTERED;
static THREAD_LOCAL_PARAM int screen_top = SDL_WINDOWPOS_CENTERED;
static THREAD_LOCAL_PARAM int audio_disable;
static THREAD_LOCAL_PARAM int video_disable;
static THREAD_LOCAL_PARAM int subtitle_disable;
static THREAD_LOCAL_PARAM const char* wanted_stream_spec[AVMEDIA_TYPE_NB] = {0};
static THREAD_LOCAL_PARAM int seek_by_bytes = -1;
static THREAD_LOCAL_PARAM float seek_interval = 10;
static THREAD_LOCAL_PARAM int display_disable;
static THREAD_LOCAL_PARAM int borderless;
static THREAD_LOCAL_PARAM int alwaysontop;
static THREAD_LOCAL_PARAM int startup_volume = 100;
static THREAD_LOCAL_PARAM int show_status = -1;
static THREAD_LOCAL_PARAM int av_sync_type = AV_SYNC_AUDIO_MASTER;
static THREAD_LOCAL_PARAM int64_t start_time = AV_NOPTS_VALUE;
static THREAD_LOCAL_PARAM int64_t duration = AV_NOPTS_VALUE;
static THREAD_LOCAL_PARAM int fast = 0;
static THREAD_LOCAL_PARAM int genpts = 0;
static THREAD_LOCAL_PARAM int lowres = 0;
static THREAD_LOCAL_PARAM int decoder_reorder_pts = -1;
static THREAD_LOCAL_PARAM int autoexit;
static THREAD_LOCAL_PARAM int exit_on_keydown;
static THREAD_LOCAL_PARAM int exit_on_mousedown;
static THREAD_LOCAL_PARAM int loop = 1;
static THREAD_LOCAL_PARAM int framedrop = -1;
static THREAD_LOCAL_PARAM int infinite_buffer = -1;
static THREAD_LOCAL_PARAM enum ShowMode show_mode = SHOW_MODE_NONE;
static THREAD_LOCAL_PARAM const char *audio_codec_name;
static THREAD_LOCAL_PARAM const char *subtitle_codec_name;
static THREAD_LOCAL_PARAM const char *video_codec_name;
double rdftspeed = 0.02;
static THREAD_LOCAL_PARAM int64_t cursor_last_shown;
static THREAD_LOCAL_PARAM int cursor_hidden = 0;
#if CONFIG_AVFILTER
static THREAD_LOCAL_PARAM const char **vfilters_list = NULL;
static THREAD_LOCAL_PARAM int nb_vfilters = 0;
static THREAD_LOCAL_PARAM char *afilters = NULL;
#endif
static THREAD_LOCAL_PARAM int autorotate = 1;
#ifndef FFMPEG_KIT
static THREAD_LOCAL_PARAM int find_stream_info = 1;
#endif
static THREAD_LOCAL_PARAM int filter_nbthreads = 0;
/* current context */
static THREAD_LOCAL int is_full_screen;
static THREAD_LOCAL int64_t audio_callback_time;
#define FF_QUIT_EVENT (SDL_USEREVENT + 2)
static THREAD_LOCAL /*SDL_Window * */ int window = 0;
static THREAD_LOCAL /*SDL_Renderer * */ int renderer = 0;
static THREAD_LOCAL SDL_RendererInfo renderer_info = {0};
static THREAD_LOCAL SDL_AudioDeviceID audio_dev;
static THREAD_LOCAL const struct TextureFormatEntry {
enum AVPixelFormat format;
int texture_fmt;
} sdl_texture_format_map[] = {
{ AV_PIX_FMT_RGB8, SDL_PIXELFORMAT_RGB332 },
{ AV_PIX_FMT_RGB444, SDL_PIXELFORMAT_RGB444 },
{ AV_PIX_FMT_RGB555, SDL_PIXELFORMAT_RGB555 },
{ AV_PIX_FMT_BGR555, SDL_PIXELFORMAT_BGR555 },
{ AV_PIX_FMT_RGB565, SDL_PIXELFORMAT_RGB565 },
{ AV_PIX_FMT_BGR565, SDL_PIXELFORMAT_BGR565 },
{ AV_PIX_FMT_RGB24, SDL_PIXELFORMAT_RGB24 },
{ AV_PIX_FMT_BGR24, SDL_PIXELFORMAT_BGR24 },
{ AV_PIX_FMT_0RGB32, SDL_PIXELFORMAT_RGB888 },
{ AV_PIX_FMT_0BGR32, SDL_PIXELFORMAT_BGR888 },
{ AV_PIX_FMT_NE(RGB0, 0BGR), SDL_PIXELFORMAT_RGBX8888 },
{ AV_PIX_FMT_NE(BGR0, 0RGB), SDL_PIXELFORMAT_BGRX8888 },
{ AV_PIX_FMT_RGB32, SDL_PIXELFORMAT_ARGB8888 },
{ AV_PIX_FMT_RGB32_1, SDL_PIXELFORMAT_RGBA8888 },
{ AV_PIX_FMT_BGR32, SDL_PIXELFORMAT_ABGR8888 },
{ AV_PIX_FMT_BGR32_1, SDL_PIXELFORMAT_BGRA8888 },
{ AV_PIX_FMT_YUV420P, SDL_PIXELFORMAT_IYUV },
{ AV_PIX_FMT_YUYV422, SDL_PIXELFORMAT_YUY2 },
{ AV_PIX_FMT_UYVY422, SDL_PIXELFORMAT_UYVY },
{ AV_PIX_FMT_NONE, SDL_PIXELFORMAT_UNKNOWN },
};
static THREAD_LOCAL_MUST int g_id = -1;
static THREAD_LOCAL_MUST FILE *g_log_output_file_pointer = NULL;
static atomic_flag g_tex_lock = ATOMIC_FLAG_INIT;
static int unity_filp_mode = 1;
static int unity_audio_channels = -1;
static int unity_audio_sample_rate = -1;
static int unity_audio_spec_size = -2;
static int unity_reset_audio = 1;
static int unity_max_packets = INT_MAX;
static atomic_flag g_lock = ATOMIC_FLAG_INIT;
static void lock() {
while (atomic_flag_test_and_set(&g_lock)) {
av_usleep(0);
}
}
static int try_lock() {
if (atomic_flag_test_and_set(&g_lock)) {
return 0;
}
return 1;
}
static void unlock() {
atomic_flag_clear(&g_lock);
av_usleep(0);
}
static atomic_flag g_init_lock = ATOMIC_FLAG_INIT;
static void init_lock() {
while (atomic_flag_test_and_set(&g_init_lock)) {
av_usleep(0);
}
}
static void init_unlock() {
atomic_flag_clear(&g_init_lock);
av_usleep(0);
}
static int *g_stop_ids = NULL;
static int g_stop_ids_count = 0;
static int *g_running_ids = NULL;
static int g_running_ids_count = 0;
static void add_to_array(int **array, int *size, int val)
{
int *new_array = av_malloc(sizeof(int) * (*size + 1));
for (int loop = 0; loop < *size; loop++) {
new_array[loop] = (*array)[loop];
}
new_array[*size] = val;
if (*array != NULL) {
av_freep(array);
}
*array = new_array;
(*size)++;
}
static void remove_from_array(int *array, int *size, int val)
{
int pos = 0;
int del = 0;
for (int loop = 0; loop < *size; loop++) {
if (val != array[loop]) {
array[pos] = array[loop];
pos++;
}
else {
del++;
}
}
*size -= del;
}
typedef struct VideoStatePair {
int id;
VideoState *is;
} VideoStatePair;
static VideoStatePair *g_is_pair_array = NULL;
static int g_is_pair_array_count = 0;
static void add_is_pair(int id, VideoState *is)
{
VideoStatePair *new_array = av_malloc(sizeof(VideoStatePair) * (g_is_pair_array_count + 1));
for (int loop = 0; loop < g_is_pair_array_count; loop++) {
new_array[loop] = g_is_pair_array[loop];
}
new_array[g_is_pair_array_count].id = id;
new_array[g_is_pair_array_count].is = is;
if (g_is_pair_array != NULL) {
av_freep(&g_is_pair_array);
}
g_is_pair_array = new_array;
g_is_pair_array_count++;
}
static VideoState *get_is(int id)
{
for (int loop = 0; loop < g_is_pair_array_count; loop++) {
if (g_is_pair_array[loop].id == id) {
return g_is_pair_array[loop].is;
}
}
return NULL;
}
static void remove_is_pair(int id)
{
int del_pos = -1;
for (int loop = 0; loop < g_is_pair_array_count; loop++) {
if (g_is_pair_array[loop].id == id) {
del_pos = loop;
}
}
if (del_pos < 0) {
return;
}
int pos = 0;
for (int loop = 0; loop < g_is_pair_array_count; loop++) {
if (del_pos != loop) {
g_is_pair_array[pos] = g_is_pair_array[loop];
pos++;
}
}
g_is_pair_array_count--;
}
DLL_EXPORT int ffplay_is_running(int id)
{
int ret = 0;
if (g_running_ids_count > 0) {
int is_locked = 0;
int count = 0;
do
{
is_locked = try_lock();
count++;
if (is_locked == 0) {
av_usleep(100);
}
} while (is_locked == 0 && count < 100);
for (int loop = 0; loop < g_running_ids_count; loop++) {
if (g_running_ids[loop] == id) {
ret = 1;
break;
}
}
if (is_locked != 0) {
unlock();
}
}
return ret;
}
DLL_EXPORT void ffplay_stop(int id)
{
lock();
add_to_array(&g_stop_ids, &g_stop_ids_count, id);
unlock();
}
static int is_stop(int id)
{
int ret = 0;
if (g_stop_ids_count > 0) {
lock();
for (int loop = 0; loop < g_stop_ids_count; loop++) {
if (g_stop_ids[loop] == id) {
ret = 1;
break;
}
}
unlock();
}
return ret;
}
static void unity_ffplay_exit(int ret)
{
init_unlock();
int *ret_ptr = av_malloc(sizeof(int));
*ret_ptr = ret;
pthread_exit(ret_ptr);
}
static void unity_ffplay_exit_in_running(int ret)
{
if (is_stop(g_id) != 0) {
ffplay_stop(g_id);
}
int *ret_ptr = av_malloc(sizeof(int));
*ret_ptr = ret;
pthread_exit(ret_ptr);
}
DLL_EXPORT void ffplay_set_filp_mode(int val) {
unity_filp_mode = val;
}
DLL_EXPORT int ffplay_get_audio_channels() {
return unity_audio_channels;
}
DLL_EXPORT void ffplay_set_audio_channels(int val) {
unity_audio_channels = val;
}
DLL_EXPORT int ffplay_get_audio_sample_rate() {
return unity_audio_sample_rate;
}
DLL_EXPORT void ffplay_set_audio_sample_rate(int val) {
unity_audio_sample_rate = val;
}
DLL_EXPORT void ffplay_set_audio_spec_size(int size) {
unity_audio_spec_size = size;
}
#if CONFIG_AVFILTER
static int opt_add_vfilter(void *optctx, const char *opt, const char *arg)
{
GROW_ARRAY(vfilters_list, nb_vfilters);
vfilters_list[nb_vfilters - 1] = arg;
return 0;
}
#endif
static inline
int cmp_audio_fmts(enum AVSampleFormat fmt1, int64_t channel_count1,
enum AVSampleFormat fmt2, int64_t channel_count2)
{
/* If channel count == 1, planar and non-planar formats are the same */
if (channel_count1 == 1 && channel_count2 == 1)
return av_get_packed_sample_fmt(fmt1) != av_get_packed_sample_fmt(fmt2);
else
return channel_count1 != channel_count2 || fmt1 != fmt2;
}
static int packet_queue_put_private(PacketQueue *q, AVPacket *pkt)
{
MyAVPacketList pkt1;
int ret;
if (q->abort_request)
return -1;
pkt1.pkt = pkt;
pkt1.serial = q->serial;
ret = av_fifo_write(q->pkt_list, &pkt1, 1);
if (ret < 0)
return ret;
q->nb_packets++;
q->size += pkt1.pkt->size + sizeof(pkt1);
q->duration += pkt1.pkt->duration;
/* XXX: should duplicate packet data in DV case */
//SDL_CondSignal(q->cond);
atomic_store(&q->cond, 1);
av_usleep(0);
return 0;
}
static int packet_queue_put(PacketQueue *q, AVPacket *pkt)
{
AVPacket *pkt1;
int ret;
pkt1 = av_packet_alloc();
if (!pkt1) {
av_packet_unref(pkt);
return -1;
}
av_packet_move_ref(pkt1, pkt);
//SDL_LockMutex(q->mutex);
while (atomic_flag_test_and_set(&q->mutex)) {
av_usleep(0);
}
ret = packet_queue_put_private(q, pkt1);
//SDL_UnlockMutex(q->mutex);
atomic_flag_clear(&q->mutex);
if (ret < 0)
av_packet_free(&pkt1);
return ret;
}
static int packet_queue_put_nullpacket(PacketQueue *q, AVPacket *pkt, int stream_index)
{
pkt->stream_index = stream_index;
return packet_queue_put(q, pkt);
}
/* packet queue handling */
static int packet_queue_init(PacketQueue *q)
{
memset(q, 0, sizeof(PacketQueue));
const atomic_flag a_flag_init = ATOMIC_FLAG_INIT;
memcpy(&q->mutex, &a_flag_init, sizeof(atomic_flag));
q->pkt_list = av_fifo_alloc2(1, sizeof(MyAVPacketList), AV_FIFO_FLAG_AUTO_GROW);
if (!q->pkt_list)
return AVERROR(ENOMEM);
/*
q->mutex = SDL_CreateMutex();
if (!q->mutex) {
av_log(NULL, AV_LOG_FATAL, "SDL_CreateMutex(): %s\n", SDL_GetError());
return AVERROR(ENOMEM);
}
*/
/*
q->cond = SDL_CreateCond();
if (!q->cond) {
av_log(NULL, AV_LOG_FATAL, "SDL_CreateCond(): %s\n", SDL_GetError());
return AVERROR(ENOMEM);
}
*/
atomic_init(&q->cond, 0);
q->abort_request = 1;
return 0;
}
static void packet_queue_flush(PacketQueue *q)
{
MyAVPacketList pkt1;
//SDL_LockMutex(q->mutex);
while (atomic_flag_test_and_set(&q->mutex)) {
av_usleep(0);
}
while (av_fifo_read(q->pkt_list, &pkt1, 1) >= 0)
av_packet_free(&pkt1.pkt);
q->nb_packets = 0;
q->size = 0;
q->duration = 0;
q->serial++;
//SDL_UnlockMutex(q->mutex);
atomic_flag_clear(&q->mutex);
}
static void packet_queue_destroy(PacketQueue *q)
{
packet_queue_flush(q);
av_fifo_freep2(&q->pkt_list);
//SDL_DestroyMutex(q->mutex);
//SDL_DestroyCond(q->cond);
}
static void packet_queue_abort(PacketQueue *q)
{
//SDL_LockMutex(q->mutex);
while (atomic_flag_test_and_set(&q->mutex)) {
av_usleep(0);
}
q->abort_request = 1;
//SDL_CondSignal(q->cond);
atomic_store(&q->cond, 1);
av_usleep(0);
//SDL_UnlockMutex(q->mutex);
atomic_flag_clear(&q->mutex);
}
static void packet_queue_start(PacketQueue *q)
{
//SDL_LockMutex(q->mutex);
while (atomic_flag_test_and_set(&q->mutex)) {
av_usleep(0);
}
q->abort_request = 0;
q->serial++;
//SDL_UnlockMutex(q->mutex);
atomic_flag_clear(&q->mutex);
}
/* return < 0 if aborted, 0 if no packet and > 0 if packet. */
static int packet_queue_get(PacketQueue *q, AVPacket *pkt, int block, int *serial)
{
MyAVPacketList pkt1;
int ret;
//SDL_LockMutex(q->mutex);
while (atomic_flag_test_and_set(&q->mutex)) {
av_usleep(0);
}
for (;;) {
if (q->abort_request) {
ret = -1;
break;
}
if (av_fifo_read(q->pkt_list, &pkt1, 1) >= 0) {
q->nb_packets--;
q->size -= pkt1.pkt->size + sizeof(pkt1);
q->duration -= pkt1.pkt->duration;
av_packet_move_ref(pkt, pkt1.pkt);
if (serial)
*serial = pkt1.serial;
av_packet_free(&pkt1.pkt);
ret = 1;
break;
} else if (!block) {
ret = 0;
break;
} else {
//SDL_CondWait(q->cond, q->mutex);
while (atomic_load(&q->cond) == 0) {
atomic_flag_clear(&q->mutex);
av_usleep(0);
while (atomic_flag_test_and_set(&q->mutex)) {
av_usleep(0);
}
}
atomic_store(&q->cond, 0);
}
}
//SDL_UnlockMutex(q->mutex);
atomic_flag_clear(&q->mutex);
return ret;
}
static int decoder_init(Decoder *d, AVCodecContext *avctx, PacketQueue *queue, /*SDL_cond * */ atomic_int *empty_queue_cond) {
memset(d, 0, sizeof(Decoder));
d->pkt = av_packet_alloc();
if (!d->pkt)
return AVERROR(ENOMEM);
d->avctx = avctx;
d->queue = queue;
d->empty_queue_cond = empty_queue_cond;
d->start_pts = AV_NOPTS_VALUE;
d->pkt_serial = -1;
return 0;
}
static int decoder_decode_frame(Decoder *d, AVFrame *frame, AVSubtitle *sub) {
int ret = AVERROR(EAGAIN);
for (;;) {
if (d->queue->serial == d->pkt_serial) {
do {
if (d->queue->abort_request)
return -1;
switch (d->avctx->codec_type) {
case AVMEDIA_TYPE_VIDEO:
ret = avcodec_receive_frame(d->avctx, frame);
if (ret >= 0) {
if (decoder_reorder_pts == -1) {
frame->pts = frame->best_effort_timestamp;
} else if (!decoder_reorder_pts) {
frame->pts = frame->pkt_dts;
}
}
break;
case AVMEDIA_TYPE_AUDIO:
ret = avcodec_receive_frame(d->avctx, frame);
if (ret >= 0) {
AVRational tb = (AVRational){1, frame->sample_rate};
if (frame->pts != AV_NOPTS_VALUE)
frame->pts = av_rescale_q(frame->pts, d->avctx->pkt_timebase, tb);
else if (d->next_pts != AV_NOPTS_VALUE)
frame->pts = av_rescale_q(d->next_pts, d->next_pts_tb, tb);
if (frame->pts != AV_NOPTS_VALUE) {
d->next_pts = frame->pts + frame->nb_samples;
d->next_pts_tb = tb;
}
}
break;
}
if (ret == AVERROR_EOF) {
d->finished = d->pkt_serial;
avcodec_flush_buffers(d->avctx);
return 0;
}
if (ret >= 0)
return 1;
} while (ret != AVERROR(EAGAIN));
}
do {
if (d->queue->nb_packets == 0) {
//SDL_CondSignal(d->empty_queue_cond);
atomic_store(d->empty_queue_cond, 1);
av_usleep(0);
}
if (d->packet_pending) {
d->packet_pending = 0;
} else {
int old_serial = d->pkt_serial;
if (packet_queue_get(d->queue, d->pkt, 1, &d->pkt_serial) < 0)
return -1;
if (old_serial != d->pkt_serial) {
avcodec_flush_buffers(d->avctx);
d->finished = 0;
d->next_pts = d->start_pts;
d->next_pts_tb = d->start_pts_tb;
}
}
if (d->queue->serial == d->pkt_serial)
break;
av_packet_unref(d->pkt);
} while (1);
if (d->avctx->codec_type == AVMEDIA_TYPE_SUBTITLE) {
int got_frame = 0;
ret = avcodec_decode_subtitle2(d->avctx, sub, &got_frame, d->pkt);
if (ret < 0) {
ret = AVERROR(EAGAIN);
} else {
if (got_frame && !d->pkt->data) {
d->packet_pending = 1;
}
ret = got_frame ? 0 : (d->pkt->data ? AVERROR(EAGAIN) : AVERROR_EOF);
}
av_packet_unref(d->pkt);
} else {
if (avcodec_send_packet(d->avctx, d->pkt) == AVERROR(EAGAIN)) {
av_log(d->avctx, AV_LOG_ERROR, "Receive_frame and send_packet both returned EAGAIN, which is an API violation.\n");
d->packet_pending = 1;
} else {
av_packet_unref(d->pkt);
}
}
}
}
static void decoder_destroy(Decoder *d) {
av_packet_free(&d->pkt);
avcodec_free_context(&d->avctx);
}
static void frame_queue_unref_item(Frame *vp)
{
av_frame_unref(vp->frame);
avsubtitle_free(&vp->sub);
}
static int frame_queue_init(FrameQueue *f, PacketQueue *pktq, int max_size, int keep_last)
{
int i;
memset(f, 0, sizeof(FrameQueue));
const atomic_flag a_flag_init = ATOMIC_FLAG_INIT;
memcpy(&f->mutex, &a_flag_init, sizeof(atomic_flag));
/*
if (!(f->mutex = SDL_CreateMutex())) {
av_log(NULL, AV_LOG_FATAL, "SDL_CreateMutex(): %s\n", SDL_GetError());
return AVERROR(ENOMEM);
}
*/
/*
if (!(f->cond = SDL_CreateCond())) {
av_log(NULL, AV_LOG_FATAL, "SDL_CreateCond(): %s\n", SDL_GetError());
return AVERROR(ENOMEM);
}