~ubuntu-branches/debian/squeeze/gstreamer0.10-ffmpeg/squeeze

« back to all changes in this revision

Viewing changes to gst-libs/ext/ffmpeg/libavcodec/mpegvideo_xvmc.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-02-19 18:14:59 UTC
  • mfrom: (4.1.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20100219181459-mect96st3px2jfsi
Tags: 0.10.9.2-1
* New upstream pre-release:
  + debian/patches/03_restricted-caps.patch,
    debian/patches/04_ignore-vdpau.patch:
    - Dropped, merged upstream.
* debian/patches/03_too-new-codec-ids.patch:
  + Disable some ffmpeg codec IDs because Debian's
    ffmpeg is once again too old...

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
}
49
49
 
50
50
/**
51
 
 * Fill individual block pointers, so there are no gaps in the data_block array
 
51
 * Fills individual block pointers, so there are no gaps in the data_block array
52
52
 * in case not all blocks in the macroblock are coded.
53
53
 */
54
54
void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp)
67
67
}
68
68
 
69
69
/**
70
 
 * Find and store the surfaces that are used as reference frames.
 
70
 * Finds and stores the surfaces that are used as reference frames.
71
71
 * This function should be called for every new field and/or frame.
72
72
 * It should be safe to call the function a few times for the same field.
73
73
 */
134
134
}
135
135
 
136
136
/**
137
 
 * Complete frame/field rendering by passing any remaining blocks.
 
137
 * Completes frame/field rendering by passing any remaining blocks.
138
138
 * Normally ff_draw_horiz_band() is called for each slice, however,
139
139
 * some leftover blocks, for example from error_resilience(), may remain.
140
140
 * It should be safe to call the function a few times for the same field.
149
149
}
150
150
 
151
151
/**
152
 
 * Synthesize the data needed by XvMC to render one macroblock of data.
153
 
 * Fill all relevant fields, if necessary do IDCT.
 
152
 * Synthesizes the data needed by XvMC to render one macroblock of data.
 
153
 * Fills all relevant fields, if necessary do IDCT.
154
154
 */
155
155
void ff_xvmc_decode_mb(MpegEncContext *s)
156
156
{