Skip to content

Commit

Permalink
lavf: move ff_codec_get_tag() and ff_codec_get_id() definitions to in…
Browse files Browse the repository at this point in the history
…ternal.h
  • Loading branch information
justinruggles committed Nov 28, 2012
1 parent cdaa1f8 commit bfe5454
Show file tree
Hide file tree
Showing 18 changed files with 9 additions and 16 deletions.
2 changes: 1 addition & 1 deletion libavformat/aiff.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define AVFORMAT_AIFF_H

#include "avformat.h"
#include "riff.h"
#include "internal.h"

static const AVCodecTag ff_codec_aiff_tags[] = {
{ AV_CODEC_ID_PCM_S16BE, MKTAG('N','O','N','E') },
Expand Down
1 change: 0 additions & 1 deletion libavformat/au.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
#include "internal.h"
#include "avio_internal.h"
#include "pcm.h"
#include "riff.h"

/* if we don't know the size in advance */
#define AU_UNKNOWN_SIZE ((uint32_t)(~0))
Expand Down
1 change: 0 additions & 1 deletion libavformat/cafdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "isom.h"
#include "mov_chan.h"
#include "libavutil/intreadwrite.h"
Expand Down
1 change: 0 additions & 1 deletion libavformat/gxfenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include "avformat.h"
#include "internal.h"
#include "gxf.h"
#include "riff.h"
#include "audiointerleave.h"

#define GXF_AUDIO_PACKET_SIZE 65536
Expand Down
3 changes: 3 additions & 0 deletions libavformat/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -354,5 +354,8 @@ void ff_compute_frame_duration(int *pnum, int *pden, AVStream *st,

int ff_get_audio_frame_size(AVCodecContext *enc, int size, int mux);

unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id);

enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag);

#endif /* AVFORMAT_INTERNAL_H */
1 change: 0 additions & 1 deletion libavformat/isom.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
#include "avformat.h"
#include "internal.h"
#include "isom.h"
#include "riff.h"
#include "libavcodec/mpeg4audio.h"
#include "libavcodec/mpegaudiodata.h"

Expand Down
1 change: 0 additions & 1 deletion libavformat/lxfdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "riff.h"

#define LXF_PACKET_HEADER_SIZE 60
#define LXF_HEADER_DATA_SIZE 120
Expand Down
1 change: 0 additions & 1 deletion libavformat/nsvdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include "libavutil/mathematics.h"
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "libavutil/dict.h"

//#define DEBUG_DUMP_INDEX // XXX dumbdriving-271.nsv breaks with it commented!!
Expand Down
2 changes: 1 addition & 1 deletion libavformat/nut.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
//#include "libavutil/adler32.h"
//#include "libavcodec/mpegaudio.h"
#include "avformat.h"
#include "riff.h"
#include "internal.h"
#include "metadata.h"

#define MAIN_STARTCODE (0x7A561F5F04ADULL + (((uint64_t)('N'<<8) + 'M')<<48))
Expand Down
1 change: 1 addition & 0 deletions libavformat/nutdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "libavutil/tree.h"
#include "avio_internal.h"
#include "nut.h"
#include "riff.h"

#undef NDEBUG
#include <assert.h>
Expand Down
1 change: 1 addition & 0 deletions libavformat/nutenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "nut.h"
#include "internal.h"
#include "avio_internal.h"
#include "riff.h"

static int find_expected_header(AVCodecContext *c, int size, int key_frame,
uint8_t out[64])
Expand Down
1 change: 0 additions & 1 deletion libavformat/omadec.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
#include "libavutil/des.h"
#include "oma.h"
#include "pcm.h"
#include "riff.h"
#include "id3v2.h"


Expand Down
2 changes: 0 additions & 2 deletions libavformat/riff.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size);
extern const AVCodecTag ff_codec_bmp_tags[];
extern const AVCodecTag ff_codec_wav_tags[];

unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id);
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag);
void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale);

int ff_read_riff_info(AVFormatContext *s, int64_t size);
Expand Down
1 change: 0 additions & 1 deletion libavformat/rmdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "libavutil/dict.h"
#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "rmsipr.h"
#include "rm.h"

Expand Down
1 change: 0 additions & 1 deletion libavformat/rsodec.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "avformat.h"
#include "internal.h"
#include "pcm.h"
#include "riff.h"
#include "rso.h"

static int rso_read_header(AVFormatContext *s)
Expand Down
1 change: 0 additions & 1 deletion libavformat/smjpegenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

#include "avformat.h"
#include "internal.h"
#include "riff.h"
#include "smjpeg.h"

typedef struct SMJPEGMuxContext {
Expand Down
2 changes: 1 addition & 1 deletion libavformat/swf.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "libavutil/fifo.h"
#include "avformat.h"
#include "avio.h"
#include "riff.h" /* for CodecTag */
#include "internal.h"

/* should have a generic way to indicate probable size */
#define DUMMY_FILE_SIZE (100 * 1024 * 1024)
Expand Down
2 changes: 1 addition & 1 deletion libavformat/voc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#define AVFORMAT_VOC_H

#include "avformat.h"
#include "riff.h" /* for CodecTag */
#include "internal.h"

typedef struct voc_dec_context {
int64_t remaining_size;
Expand Down

0 comments on commit bfe5454

Please sign in to comment.