diff options
author | John Stebbins <[email protected]> | 2018-11-03 09:38:36 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2018-11-14 11:42:08 -0800 |
commit | 565a85ed63970b36b0e5a8364de3246bd38b0e41 (patch) | |
tree | 4df0d202f4257e26608a8905ede89078f4daa860 /libhb | |
parent | 36cfff2deda5a602a7224b355a5d9b1196a12b2f (diff) |
muxavformat: fix error messages
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/muxavformat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 0df30d412..5f2d7fe87 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -267,7 +267,7 @@ static int avformatInit( hb_mux_object_t * m ) priv_data = av_malloc(priv_size + AV_INPUT_BUFFER_PADDING_SIZE); if (priv_data == NULL) { - hb_error("h.265 extradata: malloc failure"); + hb_error("H.264 extradata: malloc failure"); goto error; } memcpy(priv_data, @@ -285,7 +285,7 @@ static int avformatInit( hb_mux_object_t * m ) priv_data = av_malloc(priv_size + AV_INPUT_BUFFER_PADDING_SIZE); if (priv_data == NULL) { - hb_error("h.265 extradata: malloc failure"); + hb_error("MPEG-4 extradata: malloc failure"); goto error; } memcpy(priv_data, @@ -303,7 +303,7 @@ static int avformatInit( hb_mux_object_t * m ) priv_data = av_malloc(priv_size + AV_INPUT_BUFFER_PADDING_SIZE); if (priv_data == NULL) { - hb_error("h.265 extradata: malloc failure"); + hb_error("MPEG-2 extradata: malloc failure"); goto error; } memcpy(priv_data, @@ -402,7 +402,7 @@ static int avformatInit( hb_mux_object_t * m ) priv_data = av_malloc(priv_size + AV_INPUT_BUFFER_PADDING_SIZE); if (priv_data == NULL) { - hb_error("h.265 extradata: malloc failure"); + hb_error("H.265 extradata: malloc failure"); goto error; } memcpy(priv_data, |