~ubuntu-branches/ubuntu/trusty/gst-libav1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/indeo3data.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
 
236
236
/**
237
237
 * Pack two delta values (a,b) into one 16bit word
238
 
 * according with endianess of the host machine.
 
238
 * according with endianness of the host machine.
239
239
 */
240
240
#if HAVE_BIGENDIAN
241
241
#define PD(a,b) (((a) << 8) + (b))
247
247
 * Expand a pair of delta values (a,b)
248
248
 * into two/four delta entries.
249
249
 */
250
 
#define E2(a, b) PD(a, b), PD(-a, -b)
251
 
#define E4(a, b) PD(a, b), PD(-a, -b), PD(b, a), PD(-b, -a)
 
250
#define E2(a, b) PD(a, b), PD(-(a), -(b))
 
251
#define E4(a, b) PD(a, b), PD(-(a), -(b)), PD(b, a), PD(-(b), -(a))
252
252
 
253
253
/*
254
254
 * VQ tables for 4x4 block modes.
282
282
 
283
283
/**
284
284
 * Pack four delta values (a,a,b,b) into one 32bit word
285
 
 * according with endianess of the host machine.
 
285
 * according with endianness of the host machine.
286
286
 */
287
287
#if HAVE_BIGENDIAN
288
288
#define PD(a,b) (((a) << 24) + ((a) << 16) + ((b) << 8) + (b))
320
320
static const int32_t delta_tab_3_5_m10[79]  = { TAB_3_5 };
321
321
 
322
322
 
323
 
typedef struct {
 
323
typedef struct vqEntry {
324
324
    const int16_t  *deltas;     ///< delta tables for 4x4 block modes
325
325
    const int32_t  *deltas_m10; ///< delta tables for 8x8 block modes
326
326
    uint8_t        num_dyads;   ///< number of two-pixel deltas