You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavf/mpegts: Do not return the result of a (void) function from a void function.
Fixes compilation with Sun C 5.10.
This commit is contained in:
@@ -2689,7 +2689,7 @@ int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
|
||||
|
||||
void ff_mpegts_parse_close(MpegTSContext *ts)
|
||||
{
|
||||
return avpriv_mpegts_parse_close(ts);
|
||||
avpriv_mpegts_parse_close(ts);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user