4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #include "stream/stream.h"
33 //static unsigned char videobuffer[MAX_VIDEO_PACKET_SIZE];
34 unsigned char* videobuffer
=NULL
;
37 ///! legacy variable, 4 if stream is synced, 0 if not
38 int videobuf_code_len
=0;
40 #define MAX_SYNCLEN (10 * 1024 * 1024)
41 // sync video stream, and returns next packet code
42 int sync_video_packet(demux_stream_t
*ds
){
43 if (!videobuf_code_len
) {
45 if (!demux_pattern_3(ds
, NULL
, MAX_SYNCLEN
, &skipped
, 0x100)) {
46 if (skipped
== MAX_SYNCLEN
)
47 mp_msg(MSGT_DEMUXER
, MSGL_ERR
, "parse_es: could not sync video stream!\n");
50 next_nal
= demux_getc(ds
);
53 videobuf_code_len
= 4;
54 if(skipped
) mp_dbg(MSGT_PARSEES
,MSGL_DBG2
,"videobuf: %d bytes skipped (next: 0x1%02X)\n",skipped
,next_nal
);
56 return 0x100|next_nal
;
60 videobuf_code_len
= 0;
64 // return: packet length
65 int read_video_packet(demux_stream_t
*ds
){
69 if (VIDEOBUFFER_SIZE
- videobuf_len
< 5)
72 // if(!sync_video_packet(ds)) return 0; // cannot sync (EOF)
75 packet_start
=videobuf_len
;
76 videobuffer
[videobuf_len
+0]=0;
77 videobuffer
[videobuf_len
+1]=0;
78 videobuffer
[videobuf_len
+2]=1;
79 videobuffer
[videobuf_len
+3]=next_nal
;
83 res
= demux_pattern_3(ds
, &videobuffer
[videobuf_len
],
84 VIDEOBUFFER_SIZE
- videobuf_len
, &read
, 0x100);
91 mp_dbg(MSGT_PARSEES
,MSGL_DBG2
,"videobuf: packet 0x1%02X len=%d (total=%d)\n",videobuffer
[packet_start
+3],videobuf_len
-packet_start
,videobuf_len
);
93 // Save next packet code:
94 next_nal
= demux_getc(ds
);
99 return videobuf_len
-packet_start
;
103 videobuf_code_len
= 0;
104 return videobuf_len
- packet_start
;
107 // return: next packet code
108 int skip_video_packet(demux_stream_t
*ds
){
111 // if(!sync_video_packet(ds)) return 0; // cannot sync (EOF)
113 videobuf_code_len
=0; // force resync
116 return sync_video_packet(ds
);