File: mash.cpp

package info (click to toggle)
vlc 1.1.3-1squeeze6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 134,496 kB
  • ctags: 53,762
  • sloc: ansic: 341,893; cpp: 80,372; objc: 23,171; sh: 12,102; makefile: 5,035; xml: 1,351; asm: 524; python: 257; perl: 76; sed: 16
file content (223 lines) | stat: -rw-r--r-- 7,808 bytes parent folder | download | duplicates (2)
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
/*****************************************************************************
 * mash.c: Video decoder using openmash codec implementations
 *****************************************************************************
 * Copyright (C) 2004 the VideoLAN team
 * $Id: 86245790fae8a825ba15199775934d749bf7841e $
 *
 * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
 *
 * This program 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.
 *
 * This program 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
 *****************************************************************************/

/*****************************************************************************
 * Preamble
 *****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_codec.h>
#include <vlc_block.h>

#include <p64/p64.h>

/*****************************************************************************
 * decoder_sys_t : video decoder descriptor
 *****************************************************************************/
struct decoder_sys_t
{
    /*
     * Common properties
     */
    mtime_t i_pts;
    IntraP64Decoder *p_decoder;
    bool b_inited;
    int i_counter;

};

/****************************************************************************
 * Local prototypes
 ****************************************************************************/
static int  OpenDecoder   ( vlc_object_t * );
static void CloseDecoder  ( vlc_object_t * );

static void *DecodeBlock  ( decoder_t *, block_t ** );

#if 0
static picture_t *DecodeFrame( decoder_t *, block_t * );
static block_t   *SendFrame  ( decoder_t *, block_t * );
#endif

/*****************************************************************************
 * Module descriptor
 *****************************************************************************/
vlc_module_begin ()
    set_description( N_("Video decoder using openmash") )
    set_capability( "decoder", 50 )
    set_category( CAT_INPUT )
    set_subcategory( SUBCAT_INPUT_VCODEC )
    set_callbacks( OpenDecoder, CloseDecoder )
vlc_module_end ()

/*****************************************************************************
 * OpenDecoder: probe the decoder and return score
 *****************************************************************************/
static int OpenDecoder( vlc_object_t *p_this )
{
    decoder_t *p_dec = (decoder_t*)p_this;
    decoder_sys_t *p_sys;

    switch( p_dec->fmt_in.i_codec )
    {
        /* Planar YUV */
        case VLC_CODEC_H261:
            break;

        default:
            return VLC_EGENERIC;
    }

    /* Allocate the memory needed to store the decoder's structure */
    if( ( p_dec->p_sys = p_sys =
          (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
        return VLC_ENOMEM;
    /* Misc init */
    p_sys->i_pts = VLC_TS_INVALID;
    p_sys->b_inited = false;
    p_sys->i_counter = 0;

    /* Set output properties */
    p_dec->fmt_out.i_cat = VIDEO_ES;
    p_dec->fmt_out.i_codec = VLC_CODEC_I420;

    /* Set callbacks */
    p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
        DecodeBlock;
    p_sys->p_decoder = new IntraP64Decoder();
//     foo->sync();

    return VLC_SUCCESS;
}

/*****************************************************************************
 * CloseDecoder: decoder destruction
 *****************************************************************************/
static void CloseDecoder( vlc_object_t *p_this )
{
    decoder_t *p_dec = (decoder_t*)p_this;
    free( p_dec->p_sys );
}


/****************************************************************************
 * DecodeBlock: the whole thing
 ****************************************************************************
 * This function must be fed with complete frames.
 ****************************************************************************/
static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
{
    decoder_sys_t *p_sys = p_dec->p_sys;
    block_t *p_block;
    picture_t *p_pic;
    uint32_t i_video_header;
    uint8_t *p_frame;
    int cc, sbit, ebit, mba, gob, quant, mvdh, mvdv;
    int i_width, i_height;

    if( !pp_block || !*pp_block ) return NULL;

    p_block = *pp_block;

    if( p_sys->i_pts <= VLC_TS_INVALID && p_block->i_pts <= VLC_TS_INVALID &&
        p_block->i_dts <= VLC_TS_INVALID )
    {
        /* We've just started the stream, wait for the first PTS. */
        block_Release( p_block );
        return NULL;
    }


    /* Date management */
    if( p_block->i_pts > VLC_TS_INVALID )
        p_sys->i_pts = p_block->i_pts;
    else if( p_block->i_dts > VLC_TS_INVALID )
        p_sys->i_pts = p_block->i_dts;

    i_video_header = *(uint32_t*)p_block->p_buffer; /* yes, it is native endian */
    sbit = i_video_header >> 29; /* start bit position */
    ebit = (i_video_header >> 26) & 7; /* end bit position */
    msg_Dbg( p_dec, "sbit, ebit: %d,%d", sbit, ebit );
    gob = (i_video_header >> 20) & 0xf; /* GOB number */
    if( gob > 12 )
    {
        msg_Warn( p_dec, "invalid gob, buggy vic streamer?");
    }
    mba = (i_video_header >> 15) & 0x1f; /* Macroblock address predictor */
    quant = (i_video_header >> 10) & 0x1f; /* quantizer */
    mvdh = (i_video_header >> 5) & 0x1f; /* horizontal motion vector data */
    mvdv = i_video_header & 0x1f; /* vertical motion vector data */
    cc = p_block->i_buffer - 4;
    msg_Dbg( p_dec, "packet size %d", cc );

    /* Find out p_vdec->i_raw_size */
    p_sys->p_decoder->decode( p_block->p_buffer + 4 /*bp?*/,
                              cc /*cc?*/,
                              sbit /*sbit?*/,
                              ebit /*ebit?*/,
                              mba /* mba?*/,
                              gob /* gob?*/,
                              quant /* quant?*/,
                              mvdh /* mvdh?*/,
                              mvdv /* mvdv?*/ );
    i_width = p_sys->p_decoder->width();
    i_height = p_sys->p_decoder->height();
    if( !p_sys->b_inited )
    {
        msg_Dbg( p_dec, "video size is perhaps %dx%d", i_width,
                  i_height);
        video_format_Setup( &p_dec->fmt_out.video, VLC_CODEC_I420,
                            i_width, i_height,
                            1, 1 );
        p_sys->b_inited = true;
    }
    p_pic = NULL;
    p_sys->i_counter++;
//    p_sys->p_decoder->sync();
    if( p_block->i_flags & BLOCK_FLAG_END_OF_FRAME )
    {
        p_pic = decoder_NewPicture( p_dec );
        if( !p_pic )
        {
            block_Release( p_block );
            return NULL;
        }
        p_sys->p_decoder->sync();
        p_sys->i_counter = 0;
        p_frame = p_sys->p_decoder->frame();
        vlc_memcpy( p_dec, p_pic->p[0].p_pixels, p_frame, i_width*i_height );
        p_frame += i_width * i_height;
        vlc_memcpy( p_dec, p_pic->p[1].p_pixels, p_frame, i_width*i_height/4 );
        p_frame += i_width * i_height/4;
        vlc_memcpy( p_dec, p_pic->p[2].p_pixels, p_frame, i_width*i_height/4 );
        p_pic->date = p_sys->i_pts;
    }
    block_Release( p_block);
    *pp_block = NULL;
    return p_pic;
//    return NULL;
}