[FFmpeg-cvslog] lavf/dv: return a meaningful error code from avpriv_dv_produce_packet()

Anton Khirnov git at videolan.org
Mon Sep 5 10:01:13 EEST 2022


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Aug 23 13:49:36 2022 +0200| [f0283f278a6a5f587d6cd66128b29d49ef42fb36] | committer: Anton Khirnov

lavf/dv: return a meaningful error code from avpriv_dv_produce_packet()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f0283f278a6a5f587d6cd66128b29d49ef42fb36
---

 libavformat/dv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/dv.c b/libavformat/dv.c
index f88fe62349..c888111789 100644
--- a/libavformat/dv.c
+++ b/libavformat/dv.c
@@ -404,7 +404,7 @@ int avpriv_dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
     if (buf_size < DV_PROFILE_BYTES ||
         !(c->sys = av_dv_frame_profile(c->sys, buf, buf_size)) ||
         buf_size < c->sys->frame_size) {
-        return -1;   /* Broken frame, or not enough data */
+        return AVERROR_INVALIDDATA;
     }
 
     /* Queueing audio packet */



More information about the ffmpeg-cvslog mailing list