~ubuntu-branches/ubuntu/precise/libav/precise-updates

« back to all changes in this revision

Viewing changes to libavformat/internal.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-07-21 21:12:27 UTC
  • mfrom: (1.1.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20110721211227-i7f0fi12n1t9vd8e
Tags: 4:0.7.1-1ubuntu1
* Merge from debian/unstable
  - don't build against libfaad, libdirac, librtmp and libopenjpeg
    (all in universe)
  - Extra conflicts on libswscale-extra-1 (can be dropped after natty release)

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
 
158
158
/**
159
159
 * Read a whole line of text from AVIOContext. Stop reading after reaching
160
 
 * either a \n, a \0 or EOF. The returned string is always \0 terminated,
 
160
 * either a \\n, a \\0 or EOF. The returned string is always \\0-terminated,
161
161
 * and may be truncated if the buffer is too small.
162
162
 *
163
163
 * @param s the read-only AVIOContext
164
164
 * @param buf buffer to store the read line
165
165
 * @param maxlen size of the buffer
166
166
 * @return the length of the string written in the buffer, not including the
167
 
 *         final \0
 
167
 *         final \\0
168
168
 */
169
169
int ff_get_line(AVIOContext *s, char *buf, int maxlen);
170
170