[FFmpeg-cvslog] r17895 - trunk/libavformat/gxfenc.c

bcoudurier subversion
Mon Mar 9 03:49:47 CET 2009


Author: bcoudurier
Date: Mon Mar  9 03:49:47 2009
New Revision: 17895

Log:
merge struct declaration and definition

Modified:
   trunk/libavformat/gxfenc.c

Modified: trunk/libavformat/gxfenc.c
==============================================================================
--- trunk/libavformat/gxfenc.c	Mon Mar  9 03:47:32 2009	(r17894)
+++ trunk/libavformat/gxfenc.c	Mon Mar  9 03:49:47 2009	(r17895)
@@ -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 */




More information about the ffmpeg-cvslog mailing list