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
|
/*
* decode.c
* Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
* Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
*
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
* See http://libmpeg2.sourceforge.net/ for updates.
*
* mpeg2dec 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 of the License, or
* (at your option) any later version.
*
* mpeg2dec 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* xine-specific version by G. Bartsch
*
*/
#include "config.h"
#include <stdio.h>
#include <string.h> /* memcpy/memset, try to remove */
#include <stdlib.h>
#include <inttypes.h>
#define LOG_MODULE "decode"
#define LOG_VERBOSE
/*
#define LOG
*/
#include "xine_internal.h"
#include "video_out.h"
#include "mpeg2.h"
#include "mpeg2_internal.h"
#include "xineutils.h"
#include "xvmc_vld.h"
/*
#define LOG_PAN_SCAN
*/
/* #define BUFFER_SIZE (224 * 1024) */
#define BUFFER_SIZE (1194 * 1024) /* new buffer size for mpeg2dec 0.2.1 */
static void process_userdata(mpeg2dec_t *mpeg2dec, uint8_t *buffer);
void mpeg2_init (mpeg2dec_t * mpeg2dec,
xine_video_port_t * output)
{
static int do_init = 1;
uint32_t mm_accel;
if (do_init) {
do_init = 0;
mm_accel = xine_mm_accel();
mpeg2_cpu_state_init (mm_accel);
mpeg2_idct_init (mm_accel);
mpeg2_mc_init (mm_accel);
}
if( !mpeg2dec->chunk_buffer )
mpeg2dec->chunk_buffer = xine_xmalloc_aligned (16, BUFFER_SIZE + 4,
(void**)&mpeg2dec->chunk_base);
if( !mpeg2dec->picture )
mpeg2dec->picture = xine_xmalloc_aligned (16, sizeof (picture_t),
(void**)&mpeg2dec->picture_base);
mpeg2dec->shift = 0xffffff00;
mpeg2dec->new_sequence = 0;
mpeg2dec->is_sequence_needed = 1;
mpeg2dec->is_wait_for_ip_frames = 2;
mpeg2dec->frames_to_drop = 0;
mpeg2dec->drop_frame = 0;
mpeg2dec->in_slice = 0;
mpeg2dec->output = output;
mpeg2dec->chunk_ptr = mpeg2dec->chunk_buffer;
mpeg2dec->code = 0xb4;
mpeg2dec->seek_mode = 0;
memset (mpeg2dec->picture, 0, sizeof (picture_t));
/* initialize substructures */
mpeg2_header_state_init (mpeg2dec->picture);
if ( output->get_capabilities(output) & VO_CAP_XXMC) {
printf("libmpeg2: output port has XxMC capability\n");
mpeg2dec->frame_format = XINE_IMGFMT_XXMC;
} else if( output->get_capabilities(output) & VO_CAP_XVMC_MOCOMP) {
printf("libmpeg2: output port has XvMC capability\n");
mpeg2dec->frame_format = XINE_IMGFMT_XVMC;
} else {
mpeg2dec->frame_format = XINE_IMGFMT_YV12;
}
}
static inline void get_frame_duration (mpeg2dec_t * mpeg2dec, vo_frame_t *frame)
{
switch (mpeg2dec->picture->frame_rate_code) {
case 1: /* 23.976 fps */
frame->duration = 3754; /* actually it's 3753.75 */
break;
case 2: /* 24 fps */
frame->duration = 3750;
break;
case 3: /* 25 fps */
frame->duration = 3600;
break;
case 4: /* 29.97 fps */
frame->duration = 3003;
break;
case 5: /* 30 fps */
frame->duration = 3000;
break;
case 6: /* 50 fps */
frame->duration = 1800;
break;
case 7: /* 59.94 fps */
frame->duration = 1502; /* actually it's 1501.5 */
break;
case 8: /* 60 fps */
frame->duration = 1500;
break;
default:
/* printf ("invalid/unknown frame rate code : %d \n",
frame->frame_rate_code); */
frame->duration = 0;
}
frame->duration = frame->duration *
((mpeg2dec->picture->frame_rate_ext_n + 1) /
(mpeg2dec->picture->frame_rate_ext_d + 1));
/* this should be used to detect any special rff pattern */
mpeg2dec->rff_pattern = mpeg2dec->rff_pattern << 1;
mpeg2dec->rff_pattern |= !!frame->repeat_first_field;
if( ((mpeg2dec->rff_pattern & 0xff) == 0xaa ||
(mpeg2dec->rff_pattern & 0xff) == 0x55) &&
!mpeg2dec->picture->progressive_sequence ) {
/* special case for ntsc 3:2 pulldown */
frame->duration += frame->duration/4;
}
else
{
if( frame->repeat_first_field ) {
if( !mpeg2dec->picture->progressive_sequence &&
frame->progressive_frame ) {
/* decoder should output 3 fields, so adjust duration to
count on this extra field time */
frame->duration += frame->duration/2;
} else if( mpeg2dec->picture->progressive_sequence ) {
/* for progressive sequences the output should repeat the
frame 1 or 2 times depending on top_field_first flag. */
frame->duration *= (frame->top_field_first)?3:2;
}
}
}
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, frame->duration);
/*printf("mpeg2dec: rff=%u\n",frame->repeat_first_field);*/
}
static double get_aspect_ratio(mpeg2dec_t *mpeg2dec)
{
double ratio;
picture_t * picture = mpeg2dec->picture;
double mpeg1_pel_ratio[16] = {1.0 /* forbidden */,
1.0, 0.6735, 0.7031, 0.7615, 0.8055, 0.8437, 0.8935, 0.9157,
0.9815, 1.0255, 1.0695, 1.0950, 1.1575, 1.2015, 1.0 /*reserved*/ };
if( !picture->mpeg1 ) {
/* these hardcoded values are defined on mpeg2 standard for
* aspect ratio. other values are reserved or forbidden. */
switch(picture->aspect_ratio_information) {
case 2:
ratio = 4.0/3.0;
break;
case 3:
ratio = 16.0/9.0;
break;
case 4:
ratio = 2.11/1.0;
break;
case 1:
default:
ratio = (double)picture->coded_picture_width/(double)picture->coded_picture_height;
break;
}
} else {
/* mpeg1 constants refer to pixel aspect ratio */
ratio = (double)picture->coded_picture_width/(double)picture->coded_picture_height;
ratio /= mpeg1_pel_ratio[picture->aspect_ratio_information];
}
return ratio;
}
static void remember_metainfo (mpeg2dec_t *mpeg2dec) {
picture_t * picture = mpeg2dec->picture;
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_WIDTH, picture->display_width);
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_HEIGHT, picture->display_height);
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_RATIO,
((double)10000 * get_aspect_ratio(mpeg2dec)));
switch (mpeg2dec->picture->frame_rate_code) {
case 1: /* 23.976 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 3913);
break;
case 2: /* 24 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 3750);
break;
case 3: /* 25 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 3600);
break;
case 4: /* 29.97 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 3003);
break;
case 5: /* 30 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 3000);
break;
case 6: /* 50 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 1800);
break;
case 7: /* 59.94 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 1525);
break;
case 8: /* 60 fps */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 1509);
break;
default:
/* printf ("invalid/unknown frame rate code : %d \n",
frame->frame_rate_code); */
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_FRAME_DURATION, 3000);
}
_x_meta_info_set_utf8(mpeg2dec->stream, XINE_META_INFO_VIDEOCODEC, "MPEG (libmpeg2)");
}
static inline int parse_chunk (mpeg2dec_t * mpeg2dec, int code,
uint8_t * buffer)
{
picture_t * picture;
int is_frame_done;
/* wait for sequence_header_code */
if (mpeg2dec->is_sequence_needed) {
if (code != 0xb3) {
/* printf ("libmpeg2: waiting for sequence header\n"); */
mpeg2dec->pts = 0;
return 0;
}
}
if (mpeg2dec->is_frame_needed) {
/* printf ("libmpeg2: waiting for frame start\n"); */
mpeg2dec->pts = 0;
if (mpeg2dec->picture->current_frame)
mpeg2dec->picture->current_frame->bad_frame = 1;
}
mpeg2_stats (code, buffer);
picture = mpeg2dec->picture;
is_frame_done = mpeg2dec->in_slice && ((!code) || (code >= 0xb0));
if (is_frame_done)
mpeg2dec->in_slice = 0;
if (is_frame_done && picture->current_frame != NULL) {
/*
* This frame completion code will move to a separate libmpeg2_accel.c file?
* int libmpeg2_accel_frame_completion(mpeg2dec_t *, picture_t *, int);
*/
if (mpeg2dec->frame_format == XINE_IMGFMT_XXMC) {
xine_xxmc_t *xxmc = (xine_xxmc_t *)
picture->current_frame->accel_data;
switch(picture->current_frame->format) {
case XINE_IMGFMT_XXMC:
switch(xxmc->acceleration) {
case XINE_XVMC_ACCEL_VLD:
mpeg2_xxmc_vld_frame_complete(mpeg2dec, picture, code);
break;
case XINE_XVMC_ACCEL_IDCT:
case XINE_XVMC_ACCEL_MOCOMP:
xxmc->decoded = !picture->current_frame->bad_frame;
xxmc->proc_xxmc_flush( picture->current_frame );
break;
default:
break;
}
default:
break;
}
}
/*
* End of frame completion code.
*/
if (((picture->picture_structure == FRAME_PICTURE) ||
(picture->second_field)) ) {
if (mpeg2dec->drop_frame)
picture->current_frame->bad_frame = 1;
if (picture->picture_coding_type == B_TYPE) {
if( picture->current_frame && !picture->current_frame->drawn ) {
/* hack against wrong mpeg1 pts */
if (picture->mpeg1)
picture->current_frame->pts = 0;
get_frame_duration(mpeg2dec, picture->current_frame);
mpeg2dec->frames_to_drop = picture->current_frame->draw (picture->current_frame, mpeg2dec->stream);
picture->current_frame->drawn = 1;
}
} else if (picture->forward_reference_frame && !picture->forward_reference_frame->drawn) {
get_frame_duration(mpeg2dec, picture->forward_reference_frame);
mpeg2dec->frames_to_drop = picture->forward_reference_frame->draw (picture->forward_reference_frame,
mpeg2dec->stream);
picture->forward_reference_frame->drawn = 1;
}
}
}
switch (code) {
case 0x00: /* picture_start_code */
if (mpeg2_header_picture (picture, buffer)) {
fprintf (stderr, "bad picture header\n");
abort();
}
mpeg2dec->is_frame_needed=0;
if (!picture->second_field) {
/* find out if we want to skip this frame */
mpeg2dec->drop_frame = 0;
/* picture->skip_non_intra_dct = (mpeg2dec->frames_to_drop>0) ; */
switch (picture->picture_coding_type) {
case B_TYPE:
lprintf ("B-Frame\n");
if (mpeg2dec->frames_to_drop>1) {
lprintf ("dropping b-frame because frames_to_drop==%d\n",
mpeg2dec->frames_to_drop);
mpeg2dec->drop_frame = 1;
} else if (!picture->forward_reference_frame || picture->forward_reference_frame->bad_frame
|| !picture->backward_reference_frame || picture->backward_reference_frame->bad_frame) {
#ifdef LOG
printf ("libmpeg2: dropping b-frame because ref is bad (");
if (picture->forward_reference_frame)
printf ("fw ref frame %d, bad %d;", picture->forward_reference_frame->id,
picture->forward_reference_frame->bad_frame);
else
printf ("fw ref frame not there;");
if (picture->backward_reference_frame)
printf ("bw ref frame %d, bad %d)\n", picture->backward_reference_frame->id,
picture->backward_reference_frame->bad_frame);
else
printf ("fw ref frame not there)\n");
#endif
mpeg2dec->drop_frame = 1;
} else if (mpeg2dec->is_wait_for_ip_frames > 0) {
lprintf("dropping b-frame because refs are invalid\n");
mpeg2dec->drop_frame = 1;
}
break;
case P_TYPE:
lprintf ("P-Frame\n");
if (mpeg2dec->frames_to_drop>2) {
mpeg2dec->drop_frame = 1;
lprintf ("dropping p-frame because frames_to_drop==%d\n",
mpeg2dec->frames_to_drop);
} else if (!picture->backward_reference_frame || picture->backward_reference_frame->bad_frame) {
mpeg2dec->drop_frame = 1;
#ifdef LOG
if (!picture->backward_reference_frame)
printf ("libmpeg2: dropping p-frame because no ref frame\n");
else
printf ("libmpeg2: dropping p-frame because ref %d is bad\n", picture->backward_reference_frame->id);
#endif
} else if (mpeg2dec->is_wait_for_ip_frames > 1) {
lprintf("dropping p-frame because ref is invalid\n");
mpeg2dec->drop_frame = 1;
} else if (mpeg2dec->is_wait_for_ip_frames)
mpeg2dec->is_wait_for_ip_frames--;
break;
case I_TYPE:
lprintf ("I-Frame\n");
/* for the sake of dvd menus, never drop i-frames
if (mpeg2dec->frames_to_drop>4) {
mpeg2dec->drop_frame = 1;
}
*/
if (mpeg2dec->is_wait_for_ip_frames)
mpeg2dec->is_wait_for_ip_frames--;
break;
}
}
break;
case 0xb2: /* user data code */
process_userdata(mpeg2dec, buffer);
break;
case 0xb3: /* sequence_header_code */
if (mpeg2_header_sequence (picture, buffer)) {
fprintf (stderr, "bad sequence header\n");
/* abort(); */
break;
}
if (mpeg2dec->force_aspect) picture->aspect_ratio_information = mpeg2dec->force_aspect;
if (mpeg2dec->is_sequence_needed ) {
mpeg2dec->new_sequence = 1;
}
if (mpeg2dec->is_sequence_needed
|| (picture->frame_width != picture->coded_picture_width)
|| (picture->frame_height != picture->coded_picture_height)) {
xine_event_t event;
xine_format_change_data_t data;
remember_metainfo (mpeg2dec);
event.type = XINE_EVENT_FRAME_FORMAT_CHANGE;
event.stream = mpeg2dec->stream;
event.data = &data;
event.data_length = sizeof(data);
data.width = picture->coded_picture_width;
data.height = picture->coded_picture_height;
data.aspect = picture->aspect_ratio_information;
data.pan_scan = mpeg2dec->force_pan_scan;
xine_event_send(mpeg2dec->stream, &event);
_x_stream_info_set(mpeg2dec->stream,XINE_STREAM_INFO_VIDEO_WIDTH,
picture->display_width);
_x_stream_info_set(mpeg2dec->stream,XINE_STREAM_INFO_VIDEO_HEIGHT,
picture->display_height);
if (picture->forward_reference_frame &&
picture->forward_reference_frame != picture->current_frame &&
picture->forward_reference_frame != picture->backward_reference_frame)
picture->forward_reference_frame->free (picture->forward_reference_frame);
if (picture->backward_reference_frame &&
picture->backward_reference_frame != picture->current_frame)
picture->backward_reference_frame->free (picture->backward_reference_frame);
mpeg2dec->is_sequence_needed = 0;
picture->forward_reference_frame = NULL;
picture->backward_reference_frame = NULL;
picture->frame_width = picture->coded_picture_width;
picture->frame_height = picture->coded_picture_height;
}
break;
case 0xb5: /* extension_start_code */
if (mpeg2_header_extension (picture, buffer)) {
fprintf (stderr, "bad extension\n");
abort();
}
break;
case 0xb7: /* sequence end code */
#ifdef LOG_PAN_SCAN
printf ("libmpeg2: sequence end code not handled\n");
#endif
case 0xb8: /* group of pictures start code */
if (mpeg2_header_group_of_pictures (picture, buffer)) {
printf ("libmpeg2: bad group of pictures\n");
abort();
}
default:
if (code >= 0xb9)
printf ("libmpeg2: stream not demultiplexed ?\n");
if (code >= 0xb0)
break;
if (!(mpeg2dec->in_slice)) {
mpeg2dec->in_slice = 1;
if (picture->second_field) {
if (picture->current_frame)
picture->current_frame->field(picture->current_frame,
picture->picture_structure);
else
mpeg2dec->drop_frame = 1;
} else {
int flags = picture->picture_structure;
if (!picture->mpeg1) flags |= VO_INTERLACED_FLAG;
if (mpeg2dec->force_pan_scan) flags |= VO_PAN_SCAN_FLAG;
if (mpeg2dec->new_sequence) flags |= VO_NEW_SEQUENCE_FLAG;
if ( picture->current_frame &&
picture->current_frame != picture->backward_reference_frame &&
picture->current_frame != picture->forward_reference_frame ) {
picture->current_frame->free (picture->current_frame);
}
if (picture->picture_coding_type == B_TYPE) {
picture->current_frame =
mpeg2dec->stream->video_out->get_frame (mpeg2dec->stream->video_out,
picture->coded_picture_width,
picture->coded_picture_height,
get_aspect_ratio(mpeg2dec),
mpeg2dec->frame_format,
flags);
/*
* Move to libmpeg2_accel.c
* int libmpeg2_accel_new_frame(mpeg2dec_t *, picture_t *)
*/
mpeg2_xxmc_choose_coding(mpeg2dec, picture, get_aspect_ratio(mpeg2dec),
flags);
/*
* End of new frame accel code.
*/
} else {
picture->current_frame =
mpeg2dec->stream->video_out->get_frame (mpeg2dec->stream->video_out,
picture->coded_picture_width,
picture->coded_picture_height,
get_aspect_ratio(mpeg2dec),
mpeg2dec->frame_format,
flags);
/*
* Move to libmpeg2_accel.c
* int libmpeg2_accel_new_frame(mpeg2dec_t *, picture_t *)
*/
mpeg2_xxmc_choose_coding(mpeg2dec, picture,
get_aspect_ratio(mpeg2dec), flags);
/*
* End of new frame accel code.
*/
if (picture->forward_reference_frame &&
picture->forward_reference_frame != picture->backward_reference_frame)
picture->forward_reference_frame->free (picture->forward_reference_frame);
picture->forward_reference_frame =
picture->backward_reference_frame;
picture->backward_reference_frame = picture->current_frame;
}
/*
* Move to libmpeg2_accel.c
* int libmpeg2_accel_new_sequence(mpeg2dec_t *, picture_t *)
*/
if(mpeg2dec->new_sequence) {
switch(mpeg2dec->frame_format) {
case XINE_IMGFMT_XXMC:
case XINE_IMGFMT_XVMC: {
xine_xvmc_t *xvmc = (xine_xvmc_t *)
picture->current_frame->accel_data;
picture->mc = xvmc->macroblocks;
mpeg2dec->new_sequence = 0;
break;
}
default:
break;
}
}
/*
* End of new sequence accel code.
*/
picture->current_frame->bad_frame = 1;
picture->current_frame->drawn = 0;
picture->current_frame->pts = mpeg2dec->pts;
picture->current_frame->top_field_first = picture->top_field_first;
picture->current_frame->repeat_first_field = picture->repeat_first_field;
picture->current_frame->progressive_frame = picture->progressive_frame;
picture->current_frame->crop_right = picture->coded_picture_width - picture->display_width;
picture->current_frame->crop_bottom = picture->coded_picture_height - picture->display_height;
switch( picture->picture_coding_type ) {
case I_TYPE:
picture->current_frame->picture_coding_type = XINE_PICT_I_TYPE;
break;
case P_TYPE:
picture->current_frame->picture_coding_type = XINE_PICT_P_TYPE;
break;
case B_TYPE:
picture->current_frame->picture_coding_type = XINE_PICT_B_TYPE;
break;
case D_TYPE:
picture->current_frame->picture_coding_type = XINE_PICT_D_TYPE;
break;
}
lprintf ("decoding frame %d, type %s\n",
picture->current_frame->id, picture->picture_coding_type == I_TYPE ? "I" :
picture->picture_coding_type == P_TYPE ? "P" : "B");
mpeg2dec->pts = 0;
/*printf("Starting to decode frame %d\n",picture->current_frame->id);*/
}
}
if (!mpeg2dec->drop_frame && picture->current_frame != NULL) {
#ifdef DEBUG_LOG
printf("slice target %08x past %08x future %08x\n",picture->current_frame,picture->forward_reference_frame,picture->backward_reference_frame);
fflush(stdout);
#endif
/*
* The below accelerated slice function choice will move to libmpeg2_accel.c ?
* int libmpeg2_accel_slice(mpeg2dec_t *, picture_t *, int , char *)
*/
switch( mpeg2dec->frame_format ) {
case XINE_IMGFMT_XXMC:
{
xine_xxmc_t *xxmc = (xine_xxmc_t *)
picture->current_frame->accel_data;
switch(picture->current_frame->format) {
case XINE_IMGFMT_XXMC:
switch(xxmc->acceleration) {
case XINE_XVMC_ACCEL_VLD:
mpeg2_xxmc_slice(mpeg2dec, picture, code, buffer);
break;
case XINE_XVMC_ACCEL_IDCT:
case XINE_XVMC_ACCEL_MOCOMP:
mpeg2_xvmc_slice (mpeg2dec, picture, code, buffer);
break;
default:
mpeg2_slice (picture, code, buffer);
break;
}
break;
default:
mpeg2_slice (picture, code, buffer);
break;
}
break;
}
case XINE_IMGFMT_XVMC:
mpeg2_xvmc_slice (mpeg2dec, picture, code, buffer);
break;
default:
mpeg2_slice (picture, code, buffer);
break;
}
/*
* End of acceleration code.
*/
if( picture->v_offset > picture->limit_y ) {
picture->current_frame->bad_frame = 0;
}
}
}
/* printf ("libmpeg2: parse_chunk %d completed\n", code); */
return is_frame_done;
}
static inline uint8_t * copy_chunk (mpeg2dec_t * mpeg2dec,
uint8_t * current, uint8_t * end)
{
uint32_t shift;
uint8_t * chunk_ptr;
uint8_t * limit;
uint8_t byte;
shift = mpeg2dec->shift;
chunk_ptr = mpeg2dec->chunk_ptr;
limit = current + (mpeg2dec->chunk_buffer + BUFFER_SIZE - chunk_ptr);
if (limit > end)
limit = end;
while (1) {
byte = *current++;
if (shift != 0x00000100) {
shift = (shift | byte) << 8;
*chunk_ptr++ = byte;
if (current < limit)
continue;
if (current == end) {
mpeg2dec->chunk_ptr = chunk_ptr;
mpeg2dec->shift = shift;
return NULL;
} else {
/* we filled the chunk buffer without finding a start code */
mpeg2dec->code = 0xb4; /* sequence_error_code */
mpeg2dec->chunk_ptr = mpeg2dec->chunk_buffer;
return current;
}
}
mpeg2dec->code = byte;
mpeg2dec->chunk_size = chunk_ptr - mpeg2dec->chunk_buffer - 3;
mpeg2dec->chunk_ptr = mpeg2dec->chunk_buffer;
mpeg2dec->shift = 0xffffff00;
return current;
}
}
int mpeg2_decode_data (mpeg2dec_t * mpeg2dec, uint8_t * current, uint8_t * end,
uint64_t pts)
{
int ret;
uint8_t code;
ret = 0;
if (mpeg2dec->seek_mode) {
mpeg2dec->chunk_ptr = mpeg2dec->chunk_buffer;
mpeg2dec->code = 0xb4;
mpeg2dec->seek_mode = 0;
mpeg2dec->shift = 0xffffff00;
mpeg2dec->is_frame_needed = 1;
}
if (pts)
mpeg2dec->pts = pts;
while (current != end) {
code = mpeg2dec->code;
current = copy_chunk (mpeg2dec, current, end);
if (current == NULL)
return ret;
ret += parse_chunk (mpeg2dec, code, mpeg2dec->chunk_buffer);
}
return ret;
}
void mpeg2_discontinuity (mpeg2dec_t * mpeg2dec) {
picture_t *picture = mpeg2dec->picture;
if( !picture )
return;
mpeg2dec->pts = 0;
if ( picture->current_frame )
picture->current_frame->pts = 0;
if ( picture->forward_reference_frame )
picture->forward_reference_frame->pts = 0;
if ( picture->backward_reference_frame )
picture->backward_reference_frame->pts = 0;
/*
* Move to libmpeg2_accel.c
* int libmpeg2_accel_discontinuity(mpeg2dec_t *);
*/
mpeg2dec->xvmc_last_slice_code=-1;
/*
* End of discontinuity accel code.
*/
}
void mpeg2_reset (mpeg2dec_t * mpeg2dec) {
picture_t *picture = mpeg2dec->picture;
if( !picture )
return;
mpeg2_discontinuity(mpeg2dec);
if( !picture->mpeg1 ) {
mpeg2dec->is_wait_for_ip_frames = 2;
/* mark current frames as bad so they won't make to screen */
if ( picture->current_frame )
picture->current_frame->bad_frame=1;
if (picture->forward_reference_frame )
picture->forward_reference_frame->bad_frame=1;
if (picture->backward_reference_frame)
picture->backward_reference_frame->bad_frame=1;
} else {
/* to free reference frames one also needs to fix slice.c to
* abort when they are NULL. unfortunately it seems to break
* DVD menus.
*
* ...so let's do this for mpeg-1 only :)
*/
if ( picture->current_frame &&
picture->current_frame != picture->backward_reference_frame &&
picture->current_frame != picture->forward_reference_frame )
picture->current_frame->free (picture->current_frame);
picture->current_frame = NULL;
if (picture->forward_reference_frame &&
picture->forward_reference_frame != picture->backward_reference_frame)
picture->forward_reference_frame->free (picture->forward_reference_frame);
picture->forward_reference_frame = NULL;
if (picture->backward_reference_frame)
picture->backward_reference_frame->free (picture->backward_reference_frame);
picture->backward_reference_frame = NULL;
}
mpeg2dec->in_slice = 0;
mpeg2dec->seek_mode = 1;
}
void mpeg2_flush (mpeg2dec_t * mpeg2dec) {
picture_t *picture = mpeg2dec->picture;
if (!picture)
return;
if (picture->current_frame && !picture->current_frame->drawn &&
!picture->current_frame->bad_frame) {
lprintf ("blasting out current frame %d on flush\n",
picture->current_frame->id);
picture->current_frame->drawn = 1;
get_frame_duration(mpeg2dec, picture->current_frame);
picture->current_frame->pts = 0;
picture->current_frame->draw(picture->current_frame, mpeg2dec->stream);
}
}
void mpeg2_close (mpeg2dec_t * mpeg2dec)
{
picture_t *picture = mpeg2dec->picture;
/*
{
static uint8_t finalizer[] = {0,0,1,0xb4};
mpeg2_decode_data (mpeg2dec, finalizer, finalizer+4, 0);
}
*/
/*
dont remove any picture->*->free() below. doing so will cause buffer
leak, and we only have about 15 of them.
*/
if ( picture->current_frame ) {
if( !picture->current_frame->drawn ) {
lprintf ("blasting out current frame on close\n");
picture->current_frame->pts = 0;
get_frame_duration(mpeg2dec, picture->current_frame);
picture->current_frame->draw (picture->current_frame, mpeg2dec->stream);
picture->current_frame->drawn = 1;
}
if( picture->current_frame != picture->backward_reference_frame &&
picture->current_frame != picture->forward_reference_frame ) {
picture->current_frame->free (picture->current_frame);
}
picture->current_frame = NULL;
}
if (picture->forward_reference_frame &&
picture->forward_reference_frame != picture->backward_reference_frame) {
picture->forward_reference_frame->free (picture->forward_reference_frame);
picture->forward_reference_frame = NULL;
}
if (picture->backward_reference_frame) {
if( !picture->backward_reference_frame->drawn) {
lprintf ("blasting out backward reference frame on close\n");
picture->backward_reference_frame->pts = 0;
get_frame_duration(mpeg2dec, picture->backward_reference_frame);
picture->backward_reference_frame->draw (picture->backward_reference_frame, mpeg2dec->stream);
picture->backward_reference_frame->drawn = 1;
}
picture->backward_reference_frame->free (picture->backward_reference_frame);
picture->backward_reference_frame = NULL;
}
if ( mpeg2dec->chunk_buffer ) {
free (mpeg2dec->chunk_base);
mpeg2dec->chunk_buffer = NULL;
}
if ( mpeg2dec->picture ) {
free (mpeg2dec->picture_base);
mpeg2dec->picture = NULL;
}
if ( mpeg2dec->cc_dec) {
/* dispose the closed caption decoder */
mpeg2dec->cc_dec->dispose(mpeg2dec->cc_dec);
mpeg2dec->cc_dec = NULL;
}
}
void mpeg2_find_sequence_header (mpeg2dec_t * mpeg2dec,
uint8_t * current, uint8_t * end){
uint8_t code;
picture_t *picture = mpeg2dec->picture;
mpeg2dec->seek_mode = 1;
while (current != end) {
code = mpeg2dec->code;
current = copy_chunk (mpeg2dec, current, end);
if (current == NULL)
return ;
/* printf ("looking for sequence header... %02x\n", code); */
mpeg2_stats (code, mpeg2dec->chunk_buffer);
if (code == 0xb3) { /* sequence_header_code */
if (mpeg2_header_sequence (picture, mpeg2dec->chunk_buffer)) {
printf ("libmpeg2: bad sequence header\n");
continue;
}
if (mpeg2dec->force_aspect) picture->aspect_ratio_information = mpeg2dec->force_aspect;
if (mpeg2dec->is_sequence_needed) {
xine_event_t event;
xine_format_change_data_t data;
mpeg2dec->new_sequence = 1;
mpeg2dec->is_sequence_needed = 0;
picture->frame_width = picture->coded_picture_width;
picture->frame_height = picture->coded_picture_height;
remember_metainfo (mpeg2dec);
event.type = XINE_EVENT_FRAME_FORMAT_CHANGE;
event.stream = mpeg2dec->stream;
event.data = &data;
event.data_length = sizeof(data);
data.width = picture->coded_picture_width;
data.height = picture->coded_picture_height;
data.aspect = picture->aspect_ratio_information;
data.pan_scan = mpeg2dec->force_pan_scan;
xine_event_send(mpeg2dec->stream, &event);
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_WIDTH,
picture->display_width);
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_HEIGHT,
picture->display_height);
}
} else if (code == 0xb5) { /* extension_start_code */
if (mpeg2_header_extension (picture, mpeg2dec->chunk_buffer)) {
printf ("libmpeg2: bad extension\n");
continue ;
}
}
}
}
/* Find the end of the userdata field in an MPEG-2 stream */
static uint8_t *find_end(uint8_t *buffer)
{
uint8_t *current = buffer;
while(1) {
if (current[0] == 0 && current[1] == 0 && current[2] == 1)
break;
current++;
}
return current;
}
static void process_userdata(mpeg2dec_t *mpeg2dec, uint8_t *buffer)
{
/* check if user data denotes closed captions */
if (buffer[0] == 'C' && buffer[1] == 'C') {
if (!mpeg2dec->cc_dec) {
xine_event_t event;
xine_format_change_data_t data;
/* open the closed caption decoder first */
mpeg2dec->cc_dec = _x_get_spu_decoder(mpeg2dec->stream, (BUF_SPU_CC >> 16) & 0xff);
/* send a frame format event so that the CC decoder knows the initial image size */
event.type = XINE_EVENT_FRAME_FORMAT_CHANGE;
event.stream = mpeg2dec->stream;
event.data = &data;
event.data_length = sizeof(data);
data.width = mpeg2dec->picture->coded_picture_width;
data.height = mpeg2dec->picture->coded_picture_height;
data.aspect = mpeg2dec->picture->aspect_ratio_information;
data.pan_scan = mpeg2dec->force_pan_scan;
xine_event_send(mpeg2dec->stream, &event);
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_WIDTH,
mpeg2dec->picture->display_width);
_x_stream_info_set(mpeg2dec->stream, XINE_STREAM_INFO_VIDEO_HEIGHT,
mpeg2dec->picture->display_height);
}
if (mpeg2dec->cc_dec) {
buf_element_t buf;
buf.type = BUF_SPU_CC;
buf.content = &buffer[2];
buf.pts = mpeg2dec->pts;
buf.size = find_end(buffer) - &buffer[2];
buf.decoder_flags = 0;
mpeg2dec->cc_dec->decode_data(mpeg2dec->cc_dec, &buf);
}
}
}
|