~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to libavcodec/svq1.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#include "svq1_vlc.h"
38
38
 
39
39
/* standard video sizes */
40
 
const svq1_frame_size_t ff_svq1_frame_size_table[8] = {
 
40
const struct svq1_frame_size ff_svq1_frame_size_table[8] = {
41
41
  { 160, 120 }, { 128,  96 }, { 176, 144 }, { 352, 288 },
42
42
  { 704, 576 }, { 240, 180 }, { 320, 240 }, {  -1,  -1 }
43
43
};