SYMBOL INDEX (22 symbols across 4 files) FILE: 0_hello_world.c function main (line 29) | int main(int argc, const char *argv[]) function logging (line 203) | static void logging(const char *fmt, ...) function decode_packet (line 213) | static int decode_packet(AVPacket *pPacket, AVCodecContext *pCodecContex... function save_gray_frame (line 265) | static void save_gray_frame(unsigned char *buf, int wrap, int xsize, int... FILE: 2_remuxing.c function main (line 5) | int main(int argc, char **argv) FILE: 3_transcoding.c type StreamingParams (line 12) | typedef struct StreamingParams { type StreamingContext (line 24) | typedef struct StreamingContext { function fill_stream_info (line 37) | int fill_stream_info(AVStream *avs, AVCodec **avc, AVCodecContext **avcc) { function open_media (line 50) | int open_media(const char *in_filename, AVFormatContext **avfc) { function prepare_decoder (line 60) | int prepare_decoder(StreamingContext *sc) { function prepare_video_encoder (line 80) | int prepare_video_encoder(StreamingContext *sc, AVCodecContext *decoder_... function prepare_audio_encoder (line 114) | int prepare_audio_encoder(StreamingContext *sc, int sample_rate, Streami... function prepare_copy (line 141) | int prepare_copy(AVFormatContext *avfc, AVStream **avs, AVCodecParameter... function remux (line 147) | int remux(AVPacket **pkt, AVFormatContext **avfc, AVRational decoder_tb,... function encode_video (line 153) | int encode_video(StreamingContext *decoder, StreamingContext *encoder, A... function encode_audio (line 182) | int encode_audio(StreamingContext *decoder, StreamingContext *encoder, A... function transcode_audio (line 208) | int transcode_audio(StreamingContext *decoder, StreamingContext *encoder... function transcode_video (line 229) | int transcode_video(StreamingContext *decoder, StreamingContext *encoder... function main (line 250) | int main(int argc, char *argv[]) FILE: video_debugging.c function logging (line 12) | void logging(const char *fmt, ...) function log_packet (line 22) | void log_packet(const AVFormatContext *fmt_ctx, const AVPacket *pkt) function print_timing (line 33) | void print_timing(char *name, AVFormatContext *avf, AVCodecContext *avc,...