~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to libmpcodecs/ad_hwac3.c

  • Committer: Reinhard Tartler
  • Date: 2006-07-08 08:47:54 UTC
  • Revision ID: siretart@tauware.de-20060708084754-c3ff228cc9c2d8de
upgrade to pre8

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
static int init(sh_audio_t *sh_audio)
113
113
{
114
114
  /* Dolby AC3 passthrough:*/
115
 
  sample_t *a52_samples = a52_init(0);
116
 
  if(a52_samples == NULL)
 
115
  a52_state_t *a52_state = a52_init(0);
 
116
  if(a52_state == NULL)
117
117
  {
118
118
    mp_msg(MSGT_DECAUDIO, MSGL_ERR, "A52 init failed\n");
119
119
    return 0;