]> git.sesse.net Git - ffmpeg/commitdiff
ffmpeg: drop struct from SwrContext.
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 25 Mar 2012 00:00:07 +0000 (01:00 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 25 Mar 2012 00:00:07 +0000 (01:00 +0100)
Its a typdef now and doesnt need the struct anymore.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
ffmpeg.c

index 8f9735b6fbf09d80527fbb74679f880a6f224a05..db2066a42bb1fc26a27e18022356ae369d6a2f7e 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -281,7 +281,7 @@ typedef struct OutputStream {
     AVFifoBuffer *fifo;     /* for compression: one audio fifo per codec */
     FILE *logfile;
 
-    struct SwrContext *swr;
+    SwrContext *swr;
 
 #if CONFIG_AVFILTER
     AVFilterContext *output_video_filter;