This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/src_movie: Fix handling of packet size for video
See Ticket2556 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer
12 years ago
parent
87bc648930
commit
ee97982408
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/src_movie.c
+ 1
- 1
libavfilter/src_movie.c
View File
@@ -519,7 +519,7 @@ static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
movie->pkt.data = NULL;
return 0;
}
if (!ret)
if (!ret
|| st->st->codec->codec_type == AVMEDIA_TYPE_VIDEO
)
ret = pkt->size;
pkt->data += ret;
Write
Preview
Loading…
Cancel
Save