~ubuntu-branches/debian/squeeze/vlc/squeeze

« back to all changes in this revision

Viewing changes to modules/codec/invmem.c

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Mutricy
  • Date: 2009-09-20 01:08:41 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090920010841-vc6vme91a70r5w0t
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * invmem_decoder.c: memory video driver for vlc
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2008 the VideoLAN team
5
 
 * $Id: ee9d293d4f3c70106c7da5ae316b6d2607a1a069 $
 
5
 * $Id: c1371b749368a1478c3244ffc02512887832fbe2 $
6
6
 *
7
7
 * Authors: Robert Paciorek <robert@opcode.eu.org> <http://opcode.eu.org/bercik>
8
8
 * based on:
128
128
    p_sys->i_height = var_CreateGetInteger( p_this, "invmem-height" );
129
129
    if( p_sys->i_width == 0 || p_sys->i_height == 0 )
130
130
    {
131
 
        msg_Err( p_dec, "--vmem-width and --vmem-height must be > 0" );
 
131
        msg_Err( p_dec, "--invmem-width and --invmem-height must be > 0" );
132
132
        free( p_sys );
133
133
        return VLC_EGENERIC;
134
134
    }