Commit 41456ee3 authored by bcoudurier's avatar bcoudurier

merge struct declaration and definition

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17895 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a16565e1
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment