mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-01 21:48:15 +08:00
merge struct declaration and definition
Originally committed as revision 17895 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -67,14 +67,9 @@ typedef struct GXFContext {
|
|||||||
unsigned packet_count;
|
unsigned packet_count;
|
||||||
} GXFContext;
|
} GXFContext;
|
||||||
|
|
||||||
typedef struct GXF_Lines {
|
static const struct {
|
||||||
int height;
|
int height, index;
|
||||||
int index;
|
} gxf_lines_tab[] = {
|
||||||
} GXF_Lines;
|
|
||||||
|
|
||||||
|
|
||||||
/* FIXME check if it is relevant */
|
|
||||||
static const GXF_Lines gxf_lines_tab[] = {
|
|
||||||
{ 480, 1 }, /* NTSC */
|
{ 480, 1 }, /* NTSC */
|
||||||
{ 512, 1 }, /* NTSC + VBI */
|
{ 512, 1 }, /* NTSC + VBI */
|
||||||
{ 576, 2 }, /* PAL */
|
{ 576, 2 }, /* PAL */
|
||||||
|
Reference in New Issue
Block a user