[FFmpeg-devel] [PATCH]Do not show an unreadable error code if mov header parsing fails

Michael Niedermayer michaelni at gmx.at
Sun Aug 24 00:50:14 CEST 2014


On Sat, Aug 23, 2014 at 02:02:49PM +0200, Carl Eugen Hoyos wrote:
> Hi!
> 
> I don't think showing "-1094995529" or similar makes much sense.
> The calling application can still decide to show the error 
> string (as ffmpeg does).
> 
> Please comment, Carl Eugen

>  mov.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 22cbe9fcb08e20f3520d8391f4a03dac1cb464df  patchmovheader.diff
> diff --git a/libavformat/mov.c b/libavformat/mov.c
> index b3eb287..ae48c02 100644
> --- a/libavformat/mov.c
> +++ b/libavformat/mov.c
> @@ -3562,7 +3562,7 @@ static int mov_read_header(AVFormatContext *s)
>      if (mov->moov_retry)
>          avio_seek(pb, 0, SEEK_SET);
>      if ((err = mov_read_default(mov, pb, atom)) < 0) {
> -        av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
> +        av_log(s, AV_LOG_ERROR, "error reading header\n");

i think av_err2str() might provide a nicer string


[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Concerning the gods, I have no means of knowing whether they exist or not
or of what sort they may be, because of the obscurity of the subject, and
the brevity of human life -- Protagoras
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20140824/1666db94/attachment.asc>


More information about the ffmpeg-devel mailing list