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:
authorJames Almer <jamrial@gmail.com>2017-10-22 07:36:28 +0300
committerJames Almer <jamrial@gmail.com>2017-10-22 07:36:28 +0300
commitb89081e01be76fc6166131fb082151041b1a56b5 (patch)
treeea9f53bd27039092a8691865ce7d2d7ef1bae9d0 /libavformat/avformat.h
parentca4df37f06f8a47651c67693b4851ed8d7e3ef74 (diff)
avformat: remove dead av_stream_get_side_data() cruft
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 870409061f..ece1b179f3 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -2082,13 +2082,8 @@ uint8_t *av_stream_new_side_data(AVStream *stream,
* @param size pointer for side information size to store (optional)
* @return pointer to data if present or NULL otherwise
*/
-#if FF_API_NOCONST_GET_SIDE_DATA
-uint8_t *av_stream_get_side_data(AVStream *stream,
- enum AVPacketSideDataType type, int *size);
-#else
uint8_t *av_stream_get_side_data(const AVStream *stream,
enum AVPacketSideDataType type, int *size);
-#endif
AVProgram *av_new_program(AVFormatContext *s, int id);