Browse Source

merge struct declaration and definition

Originally committed as revision 17895 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Baptiste Coudurier 16 years ago
parent
commit
4070629dfa
1 changed files with 3 additions and 8 deletions
  1. +3
    -8
      libavformat/gxfenc.c

+ 3
- 8
libavformat/gxfenc.c View File

@@ -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 */


Loading…
Cancel
Save