Browse Source

Merge commit '7215fcf84032118ecd9fb54fb14154d69fea638d'

* commit '7215fcf84032118ecd9fb54fb14154d69fea638d':
  avformat: Mark AVOutputFormat argument in avformat_query_codec as const

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer 11 years ago
parent
commit
57e7d9d929
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      libavformat/avformat.h
  2. +1
    -1
      libavformat/utils.c

+ 2
- 1
libavformat/avformat.h View File

@@ -2584,7 +2584,8 @@ int av_match_ext(const char *filename, const char *extensions);
* @return 1 if codec with ID codec_id can be stored in ofmt, 0 if it cannot.
* A negative number if this information is not available.
*/
int avformat_query_codec(AVOutputFormat *ofmt, enum AVCodecID codec_id, int std_compliance);
int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id,
int std_compliance);

/**
* @defgroup riff_fourcc RIFF FourCCs


+ 1
- 1
libavformat/utils.c View File

@@ -4171,7 +4171,7 @@ int64_t ff_iso8601_to_unix_time(const char *datestr)
return av_timegm(&time1);
}

int avformat_query_codec(AVOutputFormat *ofmt, enum AVCodecID codec_id,
int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id,
int std_compliance)
{
if (ofmt) {


Loading…
Cancel
Save