本文是個人 FFMPEG Tips 系列的第五篇文章,準備介紹下 ffmpeg 提供的一個很是好用的健值對工具:AVDictionary,特別是對於沒有 map 容器的 c 代碼,能夠充分利用它來配置和定義播放器的參數,ffmpeg 自己也有不少 API 經過它來傳遞參數。html
1. AVDictionary 的用法簡介微信
AVDictionary 所在的頭文件在 libavutil/dict.h,其定義以下:ide
struct AVDictionary { int count; AVDictionaryEntry *elems; };
其中,AVDictionaryEntry 的定義以下:工具
typedef struct AVDictionaryEntry { char *key; char *value; } AVDictionaryEntry;
下面就用示例的方式簡單介紹下用法url
(1)建立一個字典code
AVDictionary *d = NULL;
(2) 銷燬一個字典orm
av_dict_free(&d);
(3)添加一對 key-valuehtm
av_dict_set(&d, "name", "jhuster", 0); av_dict_set_int(&d, "age", "29", 0);
(4) 獲取 key 的值對象
AVDictionaryEntry *t = NULL; t = av_dict_get(d, "name", NULL, AV_DICT_IGNORE_SUFFIX); av_log(NULL, AV_LOG_DEBUG, "name: %s", t->value); t = av_dict_get(d, "age", NULL, AV_DICT_IGNORE_SUFFIX); av_log(NULL, AV_LOG_DEBUG, "age: %d", (int) (*t->value));
(5) 遍歷字典blog
AVDictionaryEntry *t = NULL; while ((t = av_dict_get(d, "", t, AV_DICT_IGNORE_SUFFIX))) { av_log(NULL, AV_LOG_DEBUG, "%s: %s", t->key, t->value); }
2. ffmpeg 參數的傳遞
ffmpeg 中不少 API 都是靠 AVDictionary 來傳遞參數的,好比經常使用的:
int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options);
最後一個參數就是 AVDictionary,咱們能夠在打開碼流前指定各類參數,好比:探測時間、超時時間、最大延時、支持的協議的白名單等等,例如:
AVDictionary *options = NULL; av_dict_set(&options, 「probesize」, 「4096", 0); av_dict_set(&options, 「max_delay」, 「5000000」, 0); AVFormatContext *ic = avformat_alloc_context(); if (avformat_open_input(&ic, url, NULL, &options) < 0) { LOGE("could not open source %s", url); return -1; }
那麼,咱們怎麼知道 ffmpeg 的這個 API 支持哪些可配置的參數呢 ?
咱們能夠查看 ffmpeg 源碼,好比 avformat_open_input 是結構體 AVFormatContext 提供的 API,在 libavformat/options_table.h 中定義了 AVFormatContext 全部支持的 options 選項,以下所示:
https://www.ffmpeg.org/doxygen/trunk/libavformat_2options__table_8h-source.html
同理,AVCodec 相關 API 支持的 options 選項則能夠在 libavcodec/options_table.h 文件中找到,以下所示:
https://www.ffmpeg.org/doxygen/3.1/libavcodec_2options__table_8h_source.html
3. 小結
固然,咱們也能夠仿照 ffmpeg,給本身的核心結構體對象定義這樣的 options 選項,這篇文章就不展開詳述了。
關於如何利用 AVDictionary 配置參數就介紹到這兒了,文章中有不清楚的地方歡迎留言或者來信 lujun.hust@gmail.com 交流,關注個人新浪微博 @盧_俊 或者 微信公衆號 @Jhuster 獲取最新的文章和資訊。