diff options
author | Martin Storsjö <martin@martin.st> | 2010-05-18 19:34:21 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-05-18 19:34:21 +0000 |
commit | 796ac2335d8fa5733ffb1700bd138812170f5c9e (patch) | |
tree | 0d9e08905d68a39717ee887da23e8dd8e0245f98 /libavformat/avformat.h | |
parent | 0341b6994ab2b819846fe1cf98b899235c5290fe (diff) | |
download | ffmpeg-796ac2335d8fa5733ffb1700bd138812170f5c9e.tar.gz |
Add a flag for enabling RTP hinting
Originally committed as revision 23161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 823212ccda..6582f194da 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -653,6 +653,7 @@ typedef struct AVFormatContext { #define AVFMT_FLAG_IGNDTS 0x0008 ///< Ignore DTS on frames that contain both DTS & PTS #define AVFMT_FLAG_NOFILLIN 0x0010 ///< Do not infer any values from other values, just return what is stored in the container #define AVFMT_FLAG_NOPARSE 0x0020 ///< Do not use AVParsers, you also must set AVFMT_FLAG_NOFILLIN as the fillin code works on frames and no parsing -> no frames. Also seeking to frames can not work if parsing to find frame boundaries has been disabled +#define AVFMT_FLAG_RTP_HINT 0x0040 ///< Add RTP hinting to the output file int loop_input; /** decoding: size of data to probe; encoding: unused. */ |