Commit 5182a2a2 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil: remove FF_CONST_AVUTIL53, its no longer needed

version is 54 already
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8294f504
...@@ -36,7 +36,7 @@ int av_dict_count(const AVDictionary *m) ...@@ -36,7 +36,7 @@ int av_dict_count(const AVDictionary *m)
return m ? m->count : 0; return m ? m->count : 0;
} }
AVDictionaryEntry *av_dict_get(FF_CONST_AVUTIL53 AVDictionary *m, const char *key, AVDictionaryEntry *av_dict_get(const AVDictionary *m, const char *key,
const AVDictionaryEntry *prev, int flags) const AVDictionaryEntry *prev, int flags)
{ {
unsigned int i, j; unsigned int i, j;
...@@ -201,7 +201,7 @@ void av_dict_free(AVDictionary **pm) ...@@ -201,7 +201,7 @@ void av_dict_free(AVDictionary **pm)
av_freep(pm); av_freep(pm);
} }
void av_dict_copy(AVDictionary **dst, FF_CONST_AVUTIL53 AVDictionary *src, int flags) void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
{ {
AVDictionaryEntry *t = NULL; AVDictionaryEntry *t = NULL;
......
...@@ -101,7 +101,7 @@ typedef struct AVDictionary AVDictionary; ...@@ -101,7 +101,7 @@ typedef struct AVDictionary AVDictionary;
* @param flags a collection of AV_DICT_* flags controlling how the entry is retrieved * @param flags a collection of AV_DICT_* flags controlling how the entry is retrieved
* @return found entry or NULL in case no matching entry was found in the dictionary * @return found entry or NULL in case no matching entry was found in the dictionary
*/ */
AVDictionaryEntry *av_dict_get(FF_CONST_AVUTIL53 AVDictionary *m, const char *key, AVDictionaryEntry *av_dict_get(const AVDictionary *m, const char *key,
const AVDictionaryEntry *prev, int flags); const AVDictionaryEntry *prev, int flags);
/** /**
...@@ -163,7 +163,7 @@ int av_dict_parse_string(AVDictionary **pm, const char *str, ...@@ -163,7 +163,7 @@ int av_dict_parse_string(AVDictionary **pm, const char *str,
* @param flags flags to use when setting entries in *dst * @param flags flags to use when setting entries in *dst
* @note metadata is read using the AV_DICT_IGNORE_SUFFIX flag * @note metadata is read using the AV_DICT_IGNORE_SUFFIX flag
*/ */
void av_dict_copy(AVDictionary **dst, FF_CONST_AVUTIL53 AVDictionary *src, int flags); void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags);
/** /**
* Free all the memory allocated for an AVDictionary struct * Free all the memory allocated for an AVDictionary struct
......
...@@ -74,12 +74,12 @@ void av_fifo_reset(AVFifoBuffer *f) ...@@ -74,12 +74,12 @@ void av_fifo_reset(AVFifoBuffer *f)
f->wndx = f->rndx = 0; f->wndx = f->rndx = 0;
} }
int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f) int av_fifo_size(const AVFifoBuffer *f)
{ {
return (uint32_t)(f->wndx - f->rndx); return (uint32_t)(f->wndx - f->rndx);
} }
int av_fifo_space(FF_CONST_AVUTIL53 AVFifoBuffer *f) int av_fifo_space(const AVFifoBuffer *f)
{ {
return f->end - f->buffer - av_fifo_size(f); return f->end - f->buffer - av_fifo_size(f);
} }
......
...@@ -73,7 +73,7 @@ void av_fifo_reset(AVFifoBuffer *f); ...@@ -73,7 +73,7 @@ void av_fifo_reset(AVFifoBuffer *f);
* @param f AVFifoBuffer to read from * @param f AVFifoBuffer to read from
* @return size * @return size
*/ */
int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f); int av_fifo_size(const AVFifoBuffer *f);
/** /**
* Return the amount of space in bytes in the AVFifoBuffer, that is the * Return the amount of space in bytes in the AVFifoBuffer, that is the
...@@ -81,7 +81,7 @@ int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f); ...@@ -81,7 +81,7 @@ int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f);
* @param f AVFifoBuffer to write into * @param f AVFifoBuffer to write into
* @return size * @return size
*/ */
int av_fifo_space(FF_CONST_AVUTIL53 AVFifoBuffer *f); int av_fifo_space(const AVFifoBuffer *f);
/** /**
* Feed data from an AVFifoBuffer to a user-supplied callback. * Feed data from an AVFifoBuffer to a user-supplied callback.
......
...@@ -121,14 +121,6 @@ ...@@ -121,14 +121,6 @@
#endif #endif
#ifndef FF_CONST_AVUTIL53
#if LIBAVUTIL_VERSION_MAJOR >= 53
#define FF_CONST_AVUTIL53 const
#else
#define FF_CONST_AVUTIL53
#endif
#endif
/** /**
* @} * @}
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment