I want to decode an incoming MPEG2-Transport Stream and then encode it to h264. Everything works fine with the h264 Codec, but the problem is that libavcodec doesn't seem to recognize the MPEG2-Transportstream. I am basically doing it analogue to the official example:
http://ffmpeg.org/doxygen/trunk/decoding__encoding_8c-source.html
ptrCodec = avcodec_find_decoder(CODEC_ID_MPEG2TS);
ptrCodec is always NULL. Could anybody help me with this?