Home | History | Annotate | Download | only in client_examples

Lines Matching defs:st

51     AVStream *st;
53 st = av_new_stream(oc, 0);
54 if (!st) {
60 c = &st->codec;
62 c = st->codec;
96 return st;
119 void open_video(AVFormatContext *oc, AVStream *st)
125 c = &st->codec;
127 c = st->codec;
171 void write_video_frame(AVFormatContext *oc, AVStream *st)
178 c = &st->codec;
180 c = st->codec;
200 pkt.stream_index= st->index;
216 pkt.stream_index= st->index;
233 void close_video(AVFormatContext *oc, AVStream *st)
235 avcodec_close(st->codec);