* DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>.
[vlc.git] / plugins / mpeg / input_ps.c
blobdb18d593601530dad4e687179bc58aa02069db98
1 /*****************************************************************************
2 * input_ps.c: PS demux and packet management
3 *****************************************************************************
4 * Copyright (C) 1998, 1999, 2000 VideoLAN
5 * $Id: input_ps.c,v 1.27 2001/05/31 03:12:49 sam Exp $
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
8 * Cyril Deguet <asmax@via.ecp.fr>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
23 *****************************************************************************/
25 #define MODULE_NAME ps
26 #include "modules_inner.h"
28 /*****************************************************************************
29 * Preamble
30 *****************************************************************************/
31 #include "defs.h"
33 #include <stdlib.h>
34 #include <string.h>
35 #include <errno.h>
37 #ifdef STRNCASECMP_IN_STRINGS_H
38 # include <strings.h>
39 #endif
41 #include <sys/types.h>
42 #include <sys/stat.h>
44 #ifdef HAVE_UNISTD_H
45 # include <unistd.h>
46 #elif defined( _MSC_VER ) && defined( _WIN32 )
47 # include <io.h>
48 #endif
50 #include <fcntl.h>
52 #include "config.h"
53 #include "common.h"
54 #include "threads.h"
55 #include "mtime.h"
56 #include "tests.h"
58 #include "intf_msg.h"
60 #include "main.h"
62 #include "stream_control.h"
63 #include "input_ext-intf.h"
64 #include "input_ext-dec.h"
66 #include "input.h"
68 #include "input_ps.h"
69 #include "mpeg_system.h"
71 #include "debug.h"
73 #include "modules.h"
75 /*****************************************************************************
76 * Local prototypes
77 *****************************************************************************/
78 static int PSProbe ( probedata_t * );
79 static int PSRead ( struct input_thread_s *,
80 data_packet_t * p_packets[INPUT_READ_ONCE] );
81 static void PSInit ( struct input_thread_s * );
82 static void PSEnd ( struct input_thread_s * );
83 static void PSSeek ( struct input_thread_s *, off_t );
84 static struct pes_packet_s * NewPES ( void * );
85 static struct data_packet_s * NewPacket ( void *, size_t );
86 static void DeletePacket( void *, struct data_packet_s * );
87 static void DeletePES ( void *, struct pes_packet_s * );
89 /*****************************************************************************
90 * Functions exported as capabilities. They are declared as static so that
91 * we don't pollute the namespace too much.
92 *****************************************************************************/
93 void _M( input_getfunctions )( function_list_t * p_function_list )
95 #define input p_function_list->functions.input
96 p_function_list->pf_probe = PSProbe;
97 input.pf_init = PSInit;
98 input.pf_open = NULL; /* Set in PSInit */
99 input.pf_close = NULL;
100 input.pf_end = PSEnd;
101 input.pf_set_area = NULL;
102 input.pf_read = PSRead;
103 input.pf_demux = input_DemuxPS;
104 input.pf_new_packet = NewPacket;
105 input.pf_new_pes = NewPES;
106 input.pf_delete_packet = DeletePacket;
107 input.pf_delete_pes = DeletePES;
108 input.pf_rewind = NULL;
109 input.pf_seek = PSSeek;
110 #undef input
114 * Data reading functions
117 /*****************************************************************************
118 * PSProbe: verifies that the stream is a PS stream
119 *****************************************************************************/
120 static int PSProbe( probedata_t *p_data )
122 input_thread_t * p_input = (input_thread_t *)p_data;
124 char * psz_name = p_input->p_source;
125 int i_handle;
126 int i_score = 10;
128 if( TestMethod( INPUT_METHOD_VAR, "ps" ) )
130 return( 999 );
133 if( ( strlen(psz_name) > 5 ) && !strncasecmp( psz_name, "file:", 5 ) )
135 /* If the user specified "file:" then it's probably a file */
136 i_score = 100;
137 psz_name += 5;
140 i_handle = open( psz_name, 0 );
141 if( i_handle == -1 )
143 return( 0 );
145 close( i_handle );
147 return( i_score );
150 /*****************************************************************************
151 * PSInit: initializes PS structures
152 *****************************************************************************/
153 static void PSInit( input_thread_t * p_input )
155 thread_ps_data_t * p_method;
156 packet_cache_t * p_packet_cache;
158 p_method = (thread_ps_data_t *)malloc( sizeof(thread_ps_data_t) );
159 if( p_method == NULL )
161 intf_ErrMsg( "Out of memory" );
162 p_input->b_error = 1;
163 return;
165 p_input->p_plugin_data = (void *)p_method;
167 /* creates the packet cache structure */
168 p_packet_cache = malloc( sizeof(packet_cache_t) );
169 if ( p_packet_cache == NULL )
171 intf_ErrMsg( "Out of memory" );
172 p_input->b_error = 1;
173 return;
175 p_input->p_method_data = (void *)p_packet_cache;
177 /* Set callback */
178 p_input->pf_open = p_input->pf_file_open;
179 p_input->pf_close = p_input->pf_file_close;
181 /* Initialize packet cache mutex */
182 vlc_mutex_init( &p_packet_cache->lock );
184 /* allocates the data cache */
185 p_packet_cache->data.p_stack = malloc( DATA_CACHE_SIZE *
186 sizeof(data_packet_t*) );
187 if ( p_packet_cache->data.p_stack == NULL )
189 intf_ErrMsg( "Out of memory" );
190 p_input->b_error = 1;
191 return;
193 p_packet_cache->data.l_index = 0;
195 /* allocates the PES cache */
196 p_packet_cache->pes.p_stack = malloc( PES_CACHE_SIZE *
197 sizeof(pes_packet_t*) );
198 if ( p_packet_cache->pes.p_stack == NULL )
200 intf_ErrMsg( "Out of memory" );
201 p_input->b_error = 1;
202 return;
204 p_packet_cache->pes.l_index = 0;
206 /* allocates the small buffer cache */
207 p_packet_cache->smallbuffer.p_stack = malloc( SMALL_CACHE_SIZE *
208 sizeof(packet_buffer_t) );
209 if ( p_packet_cache->smallbuffer.p_stack == NULL )
211 intf_ErrMsg( "Out of memory" );
212 p_input->b_error = 1;
213 return;
215 p_packet_cache->smallbuffer.l_index = 0;
217 /* allocates the large buffer cache */
218 p_packet_cache->largebuffer.p_stack = malloc( LARGE_CACHE_SIZE *
219 sizeof(packet_buffer_t) );
220 if ( p_packet_cache->largebuffer.p_stack == NULL )
222 intf_ErrMsg( "Out of memory" );
223 p_input->b_error = 1;
224 return;
226 p_packet_cache->largebuffer.l_index = 0;
228 /* Re-open the socket as a buffered FILE stream */
229 p_method->stream = fdopen( p_input->i_handle, "r" );
231 if( p_method->stream == NULL )
233 intf_ErrMsg( "Cannot open file (%s)", strerror(errno) );
234 p_input->b_error = 1;
235 return;
237 rewind( p_method->stream );
239 /* FIXME : detect if InitStream failed */
240 input_InitStream( p_input, sizeof( stream_ps_data_t ) );
241 input_AddProgram( p_input, 0, sizeof( stream_ps_data_t ) );
243 if( p_input->stream.b_seekable )
245 stream_ps_data_t * p_demux_data =
246 (stream_ps_data_t *)p_input->stream.pp_programs[0]->p_demux_data;
248 /* Pre-parse the stream to gather stream_descriptor_t. */
249 p_input->stream.pp_programs[0]->b_is_ok = 0;
250 p_demux_data->i_PSM_version = EMPTY_PSM_VERSION;
252 while( !p_input->b_die && !p_input->b_error
253 && !p_demux_data->b_has_PSM )
255 int i_result, i;
256 data_packet_t * pp_packets[INPUT_READ_ONCE];
258 i_result = PSRead( p_input, pp_packets );
259 if( i_result == 1 )
261 /* EOF */
262 vlc_mutex_lock( &p_input->stream.stream_lock );
263 p_input->stream.pp_programs[0]->b_is_ok = 1;
264 vlc_mutex_unlock( &p_input->stream.stream_lock );
265 break;
267 if( i_result == -1 )
269 p_input->b_error = 1;
270 break;
273 for( i = 0; i < INPUT_READ_ONCE && pp_packets[i] != NULL; i++ )
275 /* FIXME: use i_p_config_t */
276 input_ParsePS( p_input, pp_packets[i] );
277 DeletePacket( p_input->p_method_data, pp_packets[i] );
280 /* File too big. */
281 if( p_input->stream.p_selected_area->i_tell >
282 INPUT_PREPARSE_LENGTH )
284 break;
287 rewind( p_method->stream );
288 vlc_mutex_lock( &p_input->stream.stream_lock );
290 p_input->stream.i_method = INPUT_METHOD_FILE;
291 p_input->stream.p_selected_area->i_tell = 0;
293 if( p_demux_data->b_has_PSM )
295 /* (The PSM decoder will care about spawning the decoders) */
296 p_input->stream.pp_programs[0]->b_is_ok = 1;
298 #ifdef AUTO_SPAWN
299 else
301 /* (We have to do it ourselves) */
302 int i_es;
304 /* FIXME: we should do multiple passes in case an audio type
305 * is not present */
306 for( i_es = 0;
307 i_es < p_input->stream.pp_programs[0]->i_es_number;
308 i_es++ )
310 #define p_es p_input->stream.pp_programs[0]->pp_es[i_es]
311 switch( p_es->i_type )
313 case MPEG1_VIDEO_ES:
314 case MPEG2_VIDEO_ES:
315 input_SelectES( p_input, p_es );
316 break;
318 case MPEG1_AUDIO_ES:
319 case MPEG2_AUDIO_ES:
320 if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
321 == (p_es->i_id & 0x1F) )
322 switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
324 case 0:
325 main_PutIntVariable( INPUT_AUDIO_VAR,
326 REQUESTED_MPEG );
327 case REQUESTED_MPEG:
328 input_SelectES( p_input, p_es );
330 break;
332 case AC3_AUDIO_ES:
333 if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
334 == ((p_es->i_id & 0xF00) >> 8) )
335 switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
337 case 0:
338 main_PutIntVariable( INPUT_AUDIO_VAR,
339 REQUESTED_AC3 );
340 case REQUESTED_AC3:
341 input_SelectES( p_input, p_es );
343 break;
345 case DVD_SPU_ES:
346 if( main_GetIntVariable( INPUT_SUBTITLE_VAR, -1 )
347 == ((p_es->i_id & 0x1F00) >> 8) )
349 input_SelectES( p_input, p_es );
351 break;
353 case LPCM_AUDIO_ES:
354 if( main_GetIntVariable( INPUT_CHANNEL_VAR, 0 )
355 == ((p_es->i_id & 0x1F00) >> 8) )
356 switch( main_GetIntVariable( INPUT_AUDIO_VAR, 0 ) )
358 case 0:
359 main_PutIntVariable( INPUT_AUDIO_VAR,
360 REQUESTED_LPCM );
361 case REQUESTED_LPCM:
362 input_SelectES( p_input, p_es );
364 break;
369 #endif
370 #ifdef STATS
371 input_DumpStream( p_input );
372 #endif
373 vlc_mutex_unlock( &p_input->stream.stream_lock );
375 else
377 /* The programs will be added when we read them. */
378 vlc_mutex_lock( &p_input->stream.stream_lock );
379 p_input->stream.i_method = INPUT_METHOD_FILE;
380 p_input->stream.pp_programs[0]->b_is_ok = 0;
381 vlc_mutex_unlock( &p_input->stream.stream_lock );
385 /*****************************************************************************
386 * PSEnd: frees unused data
387 *****************************************************************************/
388 static void PSEnd( input_thread_t * p_input )
390 vlc_mutex_destroy( &((packet_cache_t *)p_input->p_plugin_data)->lock );
391 free( p_input->p_plugin_data );
394 /*****************************************************************************
395 * SafeRead: reads a chunk of stream and correctly detects errors
396 *****************************************************************************/
397 static __inline__ int SafeRead( input_thread_t * p_input, byte_t * p_buffer,
398 size_t i_len )
400 thread_ps_data_t * p_method;
401 int i_error;
403 p_method = (thread_ps_data_t *)p_input->p_plugin_data;
404 while( fread( p_buffer, i_len, 1, p_method->stream ) != 1 )
406 if( feof( p_method->stream ) )
408 return( 1 );
411 if( (i_error = ferror( p_method->stream )) )
413 intf_ErrMsg( "Read failed (%s)", strerror(i_error) );
414 return( -1 );
417 vlc_mutex_lock( &p_input->stream.stream_lock );
418 p_input->stream.p_selected_area->i_tell += i_len;
419 vlc_mutex_unlock( &p_input->stream.stream_lock );
420 return( 0 );
423 /*****************************************************************************
424 * PSRead: reads data packets
425 *****************************************************************************
426 * Returns -1 in case of error, 0 if everything went well, and 1 in case of
427 * EOF.
428 *****************************************************************************/
429 static int PSRead( input_thread_t * p_input,
430 data_packet_t * pp_packets[INPUT_READ_ONCE] )
432 byte_t p_header[6];
433 data_packet_t * p_data;
434 size_t i_packet_size;
435 int i_packet, i_error;
436 thread_ps_data_t * p_method;
438 p_method = (thread_ps_data_t *)p_input->p_plugin_data;
440 memset( pp_packets, 0, INPUT_READ_ONCE * sizeof(data_packet_t *) );
441 for( i_packet = 0; i_packet < INPUT_READ_ONCE; i_packet++ )
443 /* Read what we believe to be a packet header. */
444 if( (i_error = SafeRead( p_input, p_header, 6 )) )
446 return( i_error );
449 if( (U32_AT(p_header) & 0xFFFFFF00) != 0x100L )
451 /* This is not the startcode of a packet. Read the stream
452 * until we find one. */
453 u32 i_startcode = U32_AT(p_header);
454 int i_dummy;
456 if( i_startcode )
458 /* It is common for MPEG-1 streams to pad with zeros
459 * (although it is forbidden by the recommendation), so
460 * don't bother everybody in this case. */
461 intf_WarnMsg( 3, "Garbage at input (%.8x)", i_startcode );
464 while( (i_startcode & 0xFFFFFF00) != 0x100L )
466 i_startcode <<= 8;
467 if( (i_dummy = getc( p_method->stream )) != EOF )
469 i_startcode |= i_dummy;
471 else
473 return( 1 );
476 /* Packet found. */
477 *(u32 *)p_header = U32_AT(&i_startcode);
478 if( (i_error = SafeRead( p_input, p_header + 4, 2 )) )
480 return( i_error );
484 if( U32_AT(p_header) != 0x1BA )
486 /* That's the case for all packets, except pack header. */
487 i_packet_size = U16_AT(&p_header[4]);
489 else
491 /* Pack header. */
492 if( (p_header[4] & 0xC0) == 0x40 )
494 /* MPEG-2 */
495 i_packet_size = 8;
497 else if( (p_header[4] & 0xF0) == 0x20 )
499 /* MPEG-1 */
500 i_packet_size = 6;
502 else
504 intf_ErrMsg( "Unable to determine stream type" );
505 return( -1 );
509 /* Fetch a packet of the appropriate size. */
510 p_data = NewPacket( p_input->p_method_data, i_packet_size + 6 );
511 if( p_data == NULL )
513 intf_ErrMsg( "Out of memory" );
514 return( -1 );
517 /* Copy the header we already read. */
518 memcpy( p_data->p_buffer, p_header, 6 );
520 /* Read the remaining of the packet. */
521 if( i_packet_size && (i_error =
522 SafeRead( p_input, p_data->p_buffer + 6, i_packet_size )) )
524 return( i_error );
527 /* In MPEG-2 pack headers we still have to read stuffing bytes. */
528 if( U32_AT(p_header) == 0x1BA )
530 if( i_packet_size == 8 && (p_data->p_buffer[13] & 0x7) != 0 )
532 /* MPEG-2 stuffing bytes */
533 byte_t p_garbage[8];
534 if( (i_error = SafeRead( p_input, p_garbage,
535 p_data->p_buffer[13] & 0x7)) )
537 return( i_error );
542 /* Give the packet to the other input stages. */
543 pp_packets[i_packet] = p_data;
546 return( 0 );
549 /*****************************************************************************
550 * PSSeek: changes the stream position indicator
551 *****************************************************************************/
552 static void PSSeek( input_thread_t * p_input, off_t i_position )
554 thread_ps_data_t * p_method;
556 p_method = (thread_ps_data_t *)p_input->p_plugin_data;
558 /* A little bourrin but should work for a while --Meuuh */
559 #ifndef WIN32
560 fseeko( p_method->stream, i_position, SEEK_SET );
561 #else
562 fseek( p_method->stream, (long)i_position, SEEK_SET );
563 #endif
565 p_input->stream.p_selected_area->i_tell = i_position;
569 * Packet management utilities
573 /*****************************************************************************
574 * NewPacket: allocates a data packet
575 *****************************************************************************/
576 static struct data_packet_s * NewPacket( void * p_packet_cache,
577 size_t l_size )
579 packet_cache_t * p_cache;
580 data_packet_t * p_data;
581 long l_index;
583 p_cache = (packet_cache_t *)p_packet_cache;
585 #ifdef DEBUG
586 if ( p_cache == NULL )
588 intf_ErrMsg( "PPacket cache not initialized" );
589 return NULL;
591 #endif
593 /* Safety check */
594 if( l_size > INPUT_MAX_PACKET_SIZE )
596 intf_ErrMsg( "Packet too big (%d)", l_size );
597 return NULL;
600 vlc_mutex_lock( &p_cache->lock );
602 /* Checks whether the data cache is empty */
603 if( p_cache->data.l_index == 0 )
605 /* Allocates a new packet */
606 p_data = malloc( sizeof(data_packet_t) );
607 if( p_data == NULL )
609 intf_ErrMsg( "Out of memory" );
610 vlc_mutex_unlock( &p_cache->lock );
611 return NULL;
613 #ifdef TRACE_INPUT
614 intf_DbgMsg( "PS input: data packet allocated" );
615 #endif
617 else
619 /* Takes the packet out from the cache */
620 if( (p_data = p_cache->data.p_stack[ -- p_cache->data.l_index ])
621 == NULL )
623 intf_ErrMsg( "NULL packet in the data cache" );
624 vlc_mutex_unlock( &p_cache->lock );
625 return NULL;
629 if( l_size < MAX_SMALL_SIZE )
631 /* Small buffer */
633 /* Checks whether the buffer cache is empty */
634 if( p_cache->smallbuffer.l_index == 0 )
636 /* Allocates a new packet */
637 p_data->p_buffer = malloc( l_size );
638 if( p_data->p_buffer == NULL )
640 intf_DbgMsg( "Out of memory" );
641 free( p_data );
642 vlc_mutex_unlock( &p_cache->lock );
643 return NULL;
645 #ifdef TRACE_INPUT
646 intf_DbgMsg( "PS input: small buffer allocated" );
647 #endif
648 p_data->l_size = l_size;
650 else
652 /* Takes the packet out from the cache */
653 l_index = -- p_cache->smallbuffer.l_index;
654 if( (p_data->p_buffer = p_cache->smallbuffer.p_stack[l_index].p_data)
655 == NULL )
657 intf_ErrMsg( "NULL packet in the small buffer cache" );
658 free( p_data );
659 vlc_mutex_unlock( &p_cache->lock );
660 return NULL;
662 /* Reallocates the packet if it is too small or too large */
663 if( p_cache->smallbuffer.p_stack[l_index].l_size < l_size ||
664 p_cache->smallbuffer.p_stack[l_index].l_size > 2*l_size )
666 p_data->p_buffer = realloc( p_data->p_buffer, l_size );
667 p_data->l_size = l_size;
669 else
671 p_data->l_size = p_cache->smallbuffer.p_stack[l_index].l_size;
675 else
677 /* Large buffer */
679 /* Checks whether the buffer cache is empty */
680 if( p_cache->largebuffer.l_index == 0 )
682 /* Allocates a new packet */
683 p_data->p_buffer = malloc( l_size );
684 if ( p_data->p_buffer == NULL )
686 intf_ErrMsg( "Out of memory" );
687 free( p_data );
688 vlc_mutex_unlock( &p_cache->lock );
689 return NULL;
691 #ifdef TRACE_INPUT
692 intf_DbgMsg( "PS input: large buffer allocated" );
693 #endif
694 p_data->l_size = l_size;
696 else
698 /* Takes the packet out from the cache */
699 l_index = -- p_cache->largebuffer.l_index;
700 p_data->p_buffer = p_cache->largebuffer.p_stack[l_index].p_data;
701 if( p_data->p_buffer == NULL )
703 intf_ErrMsg( "NULL packet in the small buffer cache" );
704 free( p_data );
705 vlc_mutex_unlock( &p_cache->lock );
706 return NULL;
708 /* Reallocates the packet if it is too small or too large */
709 if( p_cache->largebuffer.p_stack[l_index].l_size < l_size ||
710 p_cache->largebuffer.p_stack[l_index].l_size > 2*l_size )
712 p_data->p_buffer = realloc( p_data->p_buffer, l_size );
713 p_data->l_size = l_size;
715 else
717 p_data->l_size = p_cache->largebuffer.p_stack[l_index].l_size;
722 vlc_mutex_unlock( &p_cache->lock );
724 /* Initialize data */
725 p_data->p_next = NULL;
726 p_data->b_discard_payload = 0;
727 p_data->p_payload_start = p_data->p_buffer;
728 p_data->p_payload_end = p_data->p_buffer + l_size;
730 return( p_data );
735 /*****************************************************************************
736 * NewPES: allocates a pes packet
737 *****************************************************************************/
738 static pes_packet_t * NewPES( void * p_packet_cache )
740 packet_cache_t * p_cache;
741 pes_packet_t * p_pes;
743 p_cache = (packet_cache_t *)p_packet_cache;
745 #ifdef DEBUG
746 if ( p_cache == NULL )
748 intf_ErrMsg( "Packet cache not initialized" );
749 return NULL;
751 #endif
753 vlc_mutex_lock( &p_cache->lock );
755 /* Checks whether the PES cache is empty */
756 if( p_cache->pes.l_index == 0 )
758 /* Allocates a new packet */
759 p_pes = malloc( sizeof(pes_packet_t) );
760 if( p_pes == NULL )
762 intf_DbgMsg( "Out of memory" );
763 vlc_mutex_unlock( &p_cache->lock );
764 return NULL;
766 #ifdef TRACE_INPUT
767 intf_DbgMsg( "PS input: PES packet allocated" );
768 #endif
770 else
772 /* Takes the packet out from the cache */
773 p_pes = p_cache->pes.p_stack[ -- p_cache->pes.l_index ];
774 if( p_pes == NULL )
776 intf_ErrMsg( "NULL packet in the data cache" );
777 vlc_mutex_unlock( &p_cache->lock );
778 return NULL;
782 vlc_mutex_unlock( &p_cache->lock );
784 p_pes->b_data_alignment = p_pes->b_discontinuity =
785 p_pes->i_pts = p_pes->i_dts = 0;
786 p_pes->i_pes_size = 0;
787 p_pes->p_first = NULL;
789 return( p_pes );
793 /*****************************************************************************
794 * DeletePacket: deletes a data packet
795 *****************************************************************************/
796 static void DeletePacket( void * p_packet_cache,
797 data_packet_t * p_data )
799 packet_cache_t * p_cache;
801 p_cache = (packet_cache_t *)p_packet_cache;
803 #ifdef DEBUG
804 if ( p_cache == NULL )
806 intf_ErrMsg( "Packet cache not initialized" );
807 return;
809 #endif
811 ASSERT( p_data );
813 vlc_mutex_lock( &p_cache->lock );
815 /* Checks whether the data cache is full */
816 if ( p_cache->data.l_index < DATA_CACHE_SIZE )
818 /* Cache not full: store the packet in it */
819 p_cache->data.p_stack[ p_cache->data.l_index ++ ] = p_data;
820 /* Small buffer or large buffer? */
821 if ( p_data->l_size < MAX_SMALL_SIZE )
823 /* Checks whether the small buffer cache is full */
824 if ( p_cache->smallbuffer.l_index < SMALL_CACHE_SIZE )
826 p_cache->smallbuffer.p_stack[
827 p_cache->smallbuffer.l_index ].l_size = p_data->l_size;
828 p_cache->smallbuffer.p_stack[
829 p_cache->smallbuffer.l_index++ ].p_data = p_data->p_buffer;
831 else
833 ASSERT( p_data->p_buffer );
834 free( p_data->p_buffer );
835 #ifdef TRACE_INPUT
836 intf_DbgMsg( "PS input: small buffer freed" );
837 #endif
840 else
842 /* Checks whether the large buffer cache is full */
843 if ( p_cache->largebuffer.l_index < LARGE_CACHE_SIZE )
845 p_cache->largebuffer.p_stack[
846 p_cache->largebuffer.l_index ].l_size = p_data->l_size;
847 p_cache->largebuffer.p_stack[
848 p_cache->largebuffer.l_index++ ].p_data = p_data->p_buffer;
850 else
852 ASSERT( p_data->p_buffer );
853 free( p_data->p_buffer );
854 #ifdef TRACE_INPUT
855 intf_DbgMsg( "PS input: large buffer freed" );
856 #endif
860 else
862 /* Cache full: the packet must be freed */
863 free( p_data->p_buffer );
864 free( p_data );
865 #ifdef TRACE_INPUT
866 intf_DbgMsg( "PS input: data packet freed" );
867 #endif
870 vlc_mutex_unlock( &p_cache->lock );
873 /*****************************************************************************
874 * DeletePES: deletes a PES packet and associated data packets
875 *****************************************************************************/
876 static void DeletePES( void * p_packet_cache, pes_packet_t * p_pes )
878 packet_cache_t * p_cache;
879 data_packet_t * p_data;
880 data_packet_t * p_next;
882 p_cache = (packet_cache_t *)p_packet_cache;
884 #ifdef DEBUG
885 if ( p_cache == NULL )
887 intf_ErrMsg( "Packet cache not initialized" );
888 return;
890 #endif
892 ASSERT( p_pes);
894 p_data = p_pes->p_first;
896 while( p_data != NULL )
898 p_next = p_data->p_next;
899 DeletePacket( p_cache, p_data );
900 p_data = p_next;
903 vlc_mutex_lock( &p_cache->lock );
905 /* Checks whether the PES cache is full */
906 if ( p_cache->pes.l_index < PES_CACHE_SIZE )
908 /* Cache not full: store the packet in it */
909 p_cache->pes.p_stack[ p_cache->pes.l_index ++ ] = p_pes;
911 else
913 /* Cache full: the packet must be freed */
914 free( p_pes );
915 #ifdef TRACE_INPUT
916 intf_DbgMsg( "PS input: PES packet freed" );
917 #endif
920 vlc_mutex_unlock( &p_cache->lock );