[FFmpeg-cvslog] avformat/hlsenc: simplify code to pass s directly
Limin Wang
git at videolan.org
Thu Jul 2 16:32:40 EEST 2020
ffmpeg | branch: master | Limin Wang <lance.lmwang at gmail.com> | Thu Jun 25 00:14:55 2020 +0800| [0e10f54585e40a03ea8f19deed50dbf61c8055bc] | committer: Limin Wang
avformat/hlsenc: simplify code to pass s directly
Suggested-by: Nicolas George <george at nsup.org>
Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e10f54585e40a03ea8f19deed50dbf61c8055bc
---
libavformat/hlsenc.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index a34da2f515..0a318d29ff 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -365,7 +365,6 @@ fail:
static int replace_str_data_in_filename(char **s, const char *filename, char placeholder, const char *datastring)
{
const char *p;
- char *new_filename;
char c;
int addchar_count;
int found_count = 0;
@@ -398,16 +397,14 @@ static int replace_str_data_in_filename(char **s, const char *filename, char pla
av_bprint_finalize(&buf, NULL);
return AVERROR(ENOMEM);
}
- if ((ret = av_bprint_finalize(&buf, &new_filename)) < 0)
+ if ((ret = av_bprint_finalize(&buf, s)) < 0)
return ret;
- *s = new_filename;
return found_count;
}
static int replace_int_data_in_filename(char **s, const char *filename, char placeholder, int64_t number)
{
const char *p;
- char *new_filename;
char c;
int nd, addchar_count;
int found_count = 0;
@@ -448,9 +445,8 @@ static int replace_int_data_in_filename(char **s, const char *filename, char pla
av_bprint_finalize(&buf, NULL);
return AVERROR(ENOMEM);
}
- if ((ret = av_bprint_finalize(&buf, &new_filename)) < 0)
+ if ((ret = av_bprint_finalize(&buf, s)) < 0)
return ret;
- *s = new_filename;
return found_count;
}
More information about the ffmpeg-cvslog
mailing list