diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-03-09 02:49:47 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-03-09 02:49:47 +0000 |
commit | 4070629dfa69efd8b10e466f7a38d480045b5284 (patch) | |
tree | 33794ec884a8c1d572b6bf7416f0b28ebb10f1f8 /libavformat | |
parent | 0c8f772791c44b7f126c5504f5626ecfa93938f7 (diff) | |
download | ffmpeg-4070629dfa69efd8b10e466f7a38d480045b5284.tar.gz |
merge struct declaration and definition
Originally committed as revision 17895 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/gxfenc.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libavformat/gxfenc.c b/libavformat/gxfenc.c index de4b20820c..71352fd330 100644 --- a/libavformat/gxfenc.c +++ b/libavformat/gxfenc.c @@ -67,14 +67,9 @@ typedef struct GXFContext { unsigned packet_count; } GXFContext; -typedef struct GXF_Lines { - int height; - int index; -} GXF_Lines; - - -/* FIXME check if it is relevant */ -static const GXF_Lines gxf_lines_tab[] = { +static const struct { + int height, index; +} gxf_lines_tab[] = { { 480, 1 }, /* NTSC */ { 512, 1 }, /* NTSC + VBI */ { 576, 2 }, /* PAL */ |