Browse Source

Merge commit '79be2c325c5ee8f7ac9e28399e51986ebe99bb3c'

* commit '79be2c325c5ee8f7ac9e28399e51986ebe99bb3c':
  doc/print_options: Move options headers to a saner place

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 12 years ago
parent
commit
fa5410f61a
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      doc/print_options.c

+ 2
- 4
doc/print_options.c View File

@@ -27,7 +27,9 @@
#include <float.h>

#include "libavformat/avformat.h"
#include "libavformat/options_table.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/options_table.h"
#include "libavutil/opt.h"

static void print_usage(void)
@@ -96,16 +98,12 @@ static void show_opts(const AVOption *opts, int per_stream)

static void show_format_opts(void)
{
#include "libavformat/options_table.h"

printf("@section Format AVOptions\n");
show_opts(avformat_options, 0);
}

static void show_codec_opts(void)
{
#include "libavcodec/options_table.h"

printf("@section Codec AVOptions\n");
show_opts(avcodec_options, 1);
}


Loading…
Cancel
Save