diff options
author | Måns Rullgård <mans@mansr.com> | 2002-10-06 23:06:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-06 23:06:06 +0000 |
commit | bb76a117b115e8c1335a7fd35f2998dc18895225 (patch) | |
tree | 0c0a255c089fa83ea174cff8a4ad4f79ccfc62f1 /libav/img.c | |
parent | 0298af4887e4ffa70f1f2ff4dd2dbe819cdace97 (diff) | |
download | ffmpeg-bb76a117b115e8c1335a7fd35f2998dc18895225.tar.gz |
c syntax update patch by (mru at users dot sourceforge dot net (Måns Rullgård))
Originally committed as revision 1008 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/img.c')
-rw-r--r-- | libav/img.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libav/img.c b/libav/img.c index ddb9c3545e..70bf2a180a 100644 --- a/libav/img.c +++ b/libav/img.c @@ -729,7 +729,7 @@ AVInputFormat pgm_iformat = { img_read_close, NULL, AVFMT_NOFILE | AVFMT_NEEDNUMBER, - extensions: "pgm", + .extensions = "pgm", }; AVOutputFormat pgm_oformat = { @@ -782,7 +782,7 @@ AVInputFormat ppm_iformat = { img_read_close, NULL, AVFMT_NOFILE | AVFMT_NEEDNUMBER | AVFMT_RGB24, - extensions: "ppm", + .extensions = "ppm", }; AVOutputFormat ppm_oformat = { @@ -809,7 +809,7 @@ AVInputFormat imgyuv_iformat = { img_read_close, NULL, AVFMT_NOFILE | AVFMT_NEEDNUMBER, - extensions: "Y", + .extensions = "Y", }; AVOutputFormat imgyuv_oformat = { @@ -883,7 +883,7 @@ AVInputFormat ppmpipe_iformat = { img_read_packet, img_read_close, NULL, - flags: AVFMT_RGB24, + .flags = AVFMT_RGB24, }; AVOutputFormat ppmpipe_oformat = { @@ -897,7 +897,7 @@ AVOutputFormat ppmpipe_oformat = { img_write_header, img_write_packet, img_write_trailer, - flags: AVFMT_RGB24, + .flags = AVFMT_RGB24, }; |