~noskcaj/ubuntu/saucy/libav/merge0.8.7-1

« back to all changes in this revision

Viewing changes to libavcodec/cook.c

  • Committer: Package Import Robot
  • Author(s): Jamie Strandboge
  • Date: 2012-11-16 12:39:50 UTC
  • mfrom: (26.1.1 quantal-security)
  • Revision ID: package-import@ubuntu.com-20121116123950-p11m12vkg2n8zc98
Tags: 6:0.8.4-0ubuntu1
No change rebuild for raring

Show diffs side-by-side

added added

removed removed

Lines of Context:
321
321
 
322
322
    /* Free the VLC tables. */
323
323
    for (i = 0; i < 13; i++)
324
 
        free_vlc(&q->envelope_quant_index[i]);
 
324
        ff_free_vlc(&q->envelope_quant_index[i]);
325
325
    for (i = 0; i < 7; i++)
326
 
        free_vlc(&q->sqvh[i]);
 
326
        ff_free_vlc(&q->sqvh[i]);
327
327
    for (i = 0; i < q->num_subpackets; i++)
328
 
        free_vlc(&q->subpacket[i].ccpl);
 
328
        ff_free_vlc(&q->subpacket[i].ccpl);
329
329
 
330
330
    av_log(avctx, AV_LOG_DEBUG, "Memory deallocated.\n");
331
331