Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2010-07-22 01:40:10 +0400
committerAurelien Jacobs <aurel@gnuage.org>2010-07-22 01:40:10 +0400
commita43416a54030f0cdf921ff4bd3e22bbe412ff603 (patch)
tree0edd455b27bf36cc0d7c96bd30ceb924bb84fdaf /libavformat/internal.h
parent7c89295145559b269cf8e257b735386016ef1814 (diff)
improve ff_get_line to return line length
Originally committed as revision 24400 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 5833ef0229..b746c1dd5c 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -167,7 +167,7 @@ int ff_get_v_length(uint64_t val);
*/
void ff_put_v(ByteIOContext *bc, uint64_t val);
-void ff_get_line(ByteIOContext *s, char *buf, int maxlen);
+int ff_get_line(ByteIOContext *s, char *buf, int maxlen);
#define SPACE_CHARS " \t\r\n"