mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
gxf: return AVERROR_EOF instead of AVERROR(EIO) at end of gxf_packet function
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
78f2833f78
commit
f645132061
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@ static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
|
|||
|
||||
return ret;
|
||||
}
|
||||
return AVERROR(EIO);
|
||||
return AVERROR_EOF;
|
||||
}
|
||||
|
||||
static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue