From d3e18ad02795f9761b7e5a5c018dfef786046acf Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sat, 7 Feb 2004 00:03:11 +0000
Subject: [PATCH] no limits!, warning is enough

Originally committed as revision 2757 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/swf.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/swf.c b/libavformat/swf.c
index bf740d3e918..fd70e545218 100644
--- a/libavformat/swf.c
+++ b/libavformat/swf.c
@@ -478,8 +478,8 @@ static int swf_write_video(AVFormatContext *s,
     int outSamples = 0;
     
     /* Flash Player limit */
-    if ( swf->swf_frame_number >= 16000 ) {
-        return 0;
+    if ( swf->swf_frame_number == 16000 ) {
+        fprintf(stderr, "warning: Flash Player limit of 16000 frames reached\n");
     }
 
     /* Store video data in queue */
@@ -679,8 +679,8 @@ static int swf_write_audio(AVFormatContext *s,
     int c = 0;
 
     /* Flash Player limit */
-    if ( swf->swf_frame_number >= 16000 ) {
-        return 0;
+    if ( swf->swf_frame_number == 16000 ) {
+        fprintf(stderr, "warning: Flash Player limit of 16000 frames reached\n");
     }
 
     if (enc->codec_id == CODEC_ID_MP3 ) {
-- 
GitLab