]> git.sesse.net Git - vlc/blob - plugins/dummy/dec_dummy.c
* ALL: new module API. Makes a few things a lot simpler, and we gain
[vlc] / plugins / dummy / dec_dummy.c
1 /*****************************************************************************
2  * dec_dummy.c: dummy decoder plugin for vlc.
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: dec_dummy.c,v 1.2 2002/07/31 20:56:51 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *      
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc/decoder.h>
29
30 #ifdef HAVE_UNISTD_H
31 #   include <unistd.h> /* write(), close() */
32 #endif
33
34 #include <sys/types.h> /* open() */
35 #include <sys/stat.h>
36 #include <fcntl.h>
37
38 #include <stdio.h> /* sprintf() */
39
40 /*****************************************************************************
41  * Local prototypes
42  *****************************************************************************/
43 static int Run ( decoder_fifo_t * );
44
45 /*****************************************************************************
46  * OpenDecoder: probe the decoder and return score
47  *****************************************************************************
48  * Always returns 0 because we are the dummy decoder!
49  *****************************************************************************/
50 int E_(OpenDecoder) ( vlc_object_t *p_this )
51 {
52     ((decoder_fifo_t*)p_this)->pf_run = Run;
53
54     return VLC_SUCCESS;
55 }
56
57 /*****************************************************************************
58  * Run: this function is called just after the thread is created
59  *****************************************************************************/
60 static int Run ( decoder_fifo_t *p_fifo )
61 {
62     bit_stream_t bit_stream;
63     mtime_t      last_date = mdate();
64     size_t       i_bytes = 0;
65
66     char         psz_file[100];
67     int          i_fd;
68
69     sprintf( psz_file, "stream.%i", p_fifo->i_object_id );
70     i_fd = open( psz_file, O_WRONLY | O_CREAT | O_TRUNC, 00644 );
71
72     if( i_fd == -1 )
73     {
74         msg_Err( p_fifo, "cannot create `%s'", psz_file );
75         p_fifo->b_error = 1;
76         DecoderError( p_fifo );
77         return -1;
78     }
79
80     msg_Dbg( p_fifo, "dumping stream to file `%s'", psz_file );
81
82     InitBitstream( &bit_stream, p_fifo, NULL, NULL );
83
84     while( !p_fifo->b_die && !p_fifo->b_error )
85     {
86         byte_t byte;
87
88         byte = GetBits( &bit_stream, 8 );
89         i_bytes++;
90
91         write( i_fd, &byte, 1 );
92
93         if( mdate() < last_date + 2000000 )
94         {
95             continue;
96         }
97
98         msg_Dbg( p_fifo, "dumped %i bytes", i_bytes );
99
100         i_bytes = 0;
101         last_date = mdate();
102     }
103
104     if( i_bytes )
105     {
106         msg_Dbg( p_fifo, "dumped %i bytes", i_bytes );
107     }
108
109     close( i_fd );
110
111     if( p_fifo->b_error )
112     {
113         DecoderError( p_fifo );
114         return -1;
115     }
116
117     return 0;
118 }
119