diff options
| author | Comment <tim@gray.(none)> | 2013-03-17 19:17:29 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-03-17 19:17:29 +0000 |
| commit | 156f40773fae82ec9fe8b5c7ad2615d8fa60c22e (patch) | |
| tree | afb9f5730aac06a59c3ca53adbc0e693269125ba /rotord/avCodec.h | |
| parent | 23fe664dabce0a7aa1890d2968e304b2ea666320 (diff) | |
implementing decoder
Diffstat (limited to 'rotord/avCodec.h')
| -rw-r--r-- | rotord/avCodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rotord/avCodec.h b/rotord/avCodec.h index 7e1815a..23f45f8 100644 --- a/rotord/avCodec.h +++ b/rotord/avCodec.h @@ -24,12 +24,12 @@ extern "C" { namespace avCodec { static int check_sample_fmt(AVCodec *codec, enum AVSampleFormat sample_fmt); - static int select_sample_rate(AVCodec *codec); - static int select_channel_layout(AVCodec *codec); - static void audio_encode_example(const char *filename); static void audio_decode_example(const char *outfilename, const char *filename); - static void video_encode_example(const char *filename, int codec_id); static void pgm_save(unsigned char *buf, int wrap, int xsize, int ysize,char *filename); static int decode_write_frame(const char *outfilename, AVCodecContext *avctx,AVFrame *frame, int *frame_count, AVPacket *pkt, int last); + static int select_channel_layout(AVCodec *codec); + static void video_encode_example(const char *filename, int codec_id); + static void audio_encode_example(const char *filename); + static int select_sample_rate(AVCodec *codec); static void video_decode_example(const char *outfilename, const char *filename); }
\ No newline at end of file |
