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

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/mjpeg.c

  • 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:
62
62
 
63
63
/* Set up the standard Huffman tables (cf. JPEG standard section K.3) */
64
64
/* IMPORTANT: these are only valid for 8-bit data precision! */
65
 
const uint8_t ff_mjpeg_bits_dc_luminance[17] =
 
65
const uint8_t avpriv_mjpeg_bits_dc_luminance[17] =
66
66
{ /* 0-base */ 0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0 };
67
 
const uint8_t ff_mjpeg_val_dc[12] =
 
67
const uint8_t avpriv_mjpeg_val_dc[12] =
68
68
{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 };
69
69
 
70
 
const uint8_t ff_mjpeg_bits_dc_chrominance[17] =
 
70
const uint8_t avpriv_mjpeg_bits_dc_chrominance[17] =
71
71
{ /* 0-base */ 0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0 };
72
72
 
73
 
const uint8_t ff_mjpeg_bits_ac_luminance[17] =
 
73
const uint8_t avpriv_mjpeg_bits_ac_luminance[17] =
74
74
{ /* 0-base */ 0, 0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 0x7d };
75
 
const uint8_t ff_mjpeg_val_ac_luminance[] =
 
75
const uint8_t avpriv_mjpeg_val_ac_luminance[] =
76
76
{ 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12,
77
77
  0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07,
78
78
  0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08,
96
96
  0xf9, 0xfa
97
97
};
98
98
 
99
 
const uint8_t ff_mjpeg_bits_ac_chrominance[17] =
 
99
const uint8_t avpriv_mjpeg_bits_ac_chrominance[17] =
100
100
{ /* 0-base */ 0, 0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 0x77 };
101
101
 
102
 
const uint8_t ff_mjpeg_val_ac_chrominance[] =
 
102
const uint8_t avpriv_mjpeg_val_ac_chrominance[] =
103
103
{ 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21,
104
104
  0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71,
105
105
  0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91,